diff --git a/CHANGELOG.md b/CHANGELOG.md index b14f68905..5b611d591 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,9 +10,9 @@ with YAML. Improved language detection when one argument is a named pipe. -Updated to the latest tree-sitter parser for C, C++, C#, Go, Haskell, -Java, JavaScript, Julia, Objective-C, OCaml, Python, Ruby, Scala and -TypeScript. +Updated to the latest tree-sitter parser for Bash, C, C++, C#, Go, +Haskell, Java, JavaScript, Julia, Objective-C, OCaml, Python, Ruby, +Scala and TypeScript. ### Syntax Highlighting diff --git a/Cargo.lock b/Cargo.lock index 6c946cdae..68f564aa1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -249,6 +249,7 @@ dependencies = [ "strsim", "strum", "tree-sitter", + "tree-sitter-bash", "tree-sitter-c", "tree-sitter-c-sharp", "tree-sitter-cpp", @@ -1015,6 +1016,16 @@ dependencies = [ "tree-sitter-language", ] +[[package]] +name = "tree-sitter-bash" +version = "0.23.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "329a4d48623ac337d42b1df84e81a1c9dbb2946907c102ca72db158c1964a52e" +dependencies = [ + "cc", + "tree-sitter-language", +] + [[package]] name = "tree-sitter-c" version = "0.23.4" diff --git a/Cargo.toml b/Cargo.toml index ceee8c340..5857481d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -92,6 +92,7 @@ tree-sitter-typescript = "0.23.2" tree-sitter-java = "0.23.4" tree-sitter-julia = "0.23.1" tree-sitter-go = "0.23.4" +tree-sitter-bash = "0.23.3" [dev-dependencies] # assert_cmd 2.0.10 requires predicates 3. diff --git a/build.rs b/build.rs index 99fa721b8..d79d7e3ea 100644 --- a/build.rs +++ b/build.rs @@ -74,11 +74,6 @@ fn main() { src_dir: "vendored_parsers/tree-sitter-ada-src", extra_files: vec![], }, - TreeSitterParser { - name: "tree-sitter-bash", - src_dir: "vendored_parsers/tree-sitter-bash-src", - extra_files: vec!["scanner.c"], - }, TreeSitterParser { name: "tree-sitter-clojure", src_dir: "vendored_parsers/tree-sitter-clojure-src", diff --git a/src/parse/tree_sitter_parser.rs b/src/parse/tree_sitter_parser.rs index 498661c51..a17ca0097 100644 --- a/src/parse/tree_sitter_parser.rs +++ b/src/parse/tree_sitter_parser.rs @@ -63,7 +63,6 @@ pub(crate) struct TreeSitterConfig { extern "C" { fn tree_sitter_ada() -> ts::Language; fn tree_sitter_apex() -> ts::Language; - fn tree_sitter_bash() -> ts::Language; fn tree_sitter_clojure() -> ts::Language; fn tree_sitter_cmake() -> ts::Language; fn tree_sitter_commonlisp() -> ts::Language; @@ -163,18 +162,17 @@ pub(crate) fn from_language(language: guess::Language) -> TreeSitterConfig { } } Bash => { - let language = unsafe { tree_sitter_bash() }; + let language_fn = tree_sitter_bash::LANGUAGE; + let language = tree_sitter::Language::new(language_fn); + TreeSitterConfig { language: language.clone(), atom_nodes: vec!["string", "raw_string", "heredoc_body"] .into_iter() .collect(), delimiter_tokens: vec![("(", ")"), ("{", "}"), ("[", "]")], - highlight_query: ts::Query::new( - &language, - include_str!("../../vendored_parsers/highlights/bash.scm"), - ) - .unwrap(), + highlight_query: ts::Query::new(&language, tree_sitter_bash::HIGHLIGHT_QUERY) + .unwrap(), sub_languages: vec![], } } diff --git a/vendored_parsers/highlights/bash.scm b/vendored_parsers/highlights/bash.scm deleted file mode 120000 index 79b326e85..000000000 --- a/vendored_parsers/highlights/bash.scm +++ /dev/null @@ -1 +0,0 @@ -../tree-sitter-bash/queries/highlights.scm \ No newline at end of file diff --git a/vendored_parsers/tree-sitter-bash-src b/vendored_parsers/tree-sitter-bash-src deleted file mode 120000 index 758a0d049..000000000 --- a/vendored_parsers/tree-sitter-bash-src +++ /dev/null @@ -1 +0,0 @@ -tree-sitter-bash/src \ No newline at end of file diff --git a/vendored_parsers/tree-sitter-bash/.eslintrc.js b/vendored_parsers/tree-sitter-bash/.eslintrc.js deleted file mode 100644 index b2e707a9e..000000000 --- a/vendored_parsers/tree-sitter-bash/.eslintrc.js +++ /dev/null @@ -1,20 +0,0 @@ -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/vendored_parsers/tree-sitter-bash/.gitattributes b/vendored_parsers/tree-sitter-bash/.gitattributes deleted file mode 100644 index d1fdd4e45..000000000 --- a/vendored_parsers/tree-sitter-bash/.gitattributes +++ /dev/null @@ -1,6 +0,0 @@ -/examples/* linguist-vendored - -+src/tree_sitter/* linguist-generated -src/grammar.json linguist-generated -src/node-types.json linguist-generated -src/parser.c linguist-generated diff --git a/vendored_parsers/tree-sitter-bash/.github/workflows/ci.yml b/vendored_parsers/tree-sitter-bash/.github/workflows/ci.yml deleted file mode 100644 index d6e1e05e6..000000000 --- a/vendored_parsers/tree-sitter-bash/.github/workflows/ci.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: CI -on: - push: - branches: - - master - pull_request: - branches: - - master -jobs: - test: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: true - matrix: - os: [macos-latest, ubuntu-latest] - steps: - - uses: actions/checkout@v3 - with: - submodules: true - fetch-depth: 0 - - uses: actions/setup-node@v3 - with: - node-version: 18 - - run: npm install - - run: npm test - test_windows: - runs-on: windows-latest - steps: - - uses: actions/checkout@v3 - with: - submodules: true - fetch-depth: 0 - - uses: actions/setup-node@v3 - with: - node-version: 18 - - run: npm install - - run: npm run-script test-windows diff --git a/vendored_parsers/tree-sitter-bash/.github/workflows/fuzz.yml b/vendored_parsers/tree-sitter-bash/.github/workflows/fuzz.yml deleted file mode 100644 index 15fa47112..000000000 --- a/vendored_parsers/tree-sitter-bash/.github/workflows/fuzz.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Fuzz Parser - -on: - push: - paths: - - src/scanner.c - pull_request: - paths: - - src/scanner.c - workflow_dispatch: - -jobs: - test: - name: Parser fuzzing - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: vigoux/tree-sitter-fuzz-action@v1 - with: - language: bash - external-scanner: src/scanner.c - time: 60 diff --git a/vendored_parsers/tree-sitter-bash/.github/workflows/lint.yml b/vendored_parsers/tree-sitter-bash/.github/workflows/lint.yml deleted file mode 100644 index d94f7f39d..000000000 --- a/vendored_parsers/tree-sitter-bash/.github/workflows/lint.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Lint - -on: - push: - branches: - - master - pull_request: - branches: - - "**" - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Install modules - run: npm install - - name: Run ESLint - run: npm run lint diff --git a/vendored_parsers/tree-sitter-bash/.github/workflows/pack.yml b/vendored_parsers/tree-sitter-bash/.github/workflows/pack.yml deleted file mode 100644 index 14a9c9b18..000000000 --- a/vendored_parsers/tree-sitter-bash/.github/workflows/pack.yml +++ /dev/null @@ -1,93 +0,0 @@ -name: Pack - -on: - release: - types: - - released - -env: - NODE_PREBUILD_CMD: npx prebuild -t 10.0.0 -t 12.0.0 -t 14.0.0 -t 16.0.0 -t 18.0.0 -t 20.0.0 --strip -u ${{ secrets.GH_TOKEN }} - ELECTRON_PREBUILD_CMD: npx prebuild -r electron -t 3.0.0 -t 4.0.0 -t 5.0.0 -t 6.0.0 -t 7.0.0 -t 8.0.0 -t 9.0.0 -t 10.0.0 -t 11.0.0 -t 12.0.0 -t 13.0.0 -t 14.0.0 -t 15.0.0 -t 16.0.0 -t 17.0.0 -t 18.0.0 -t 19.0.0 -t 20.0.0 -t 21.0.0 -t 22.0.0 -t 23.0.0 -t 24.0.0 -t 25.0.0 --strip -u ${{ secrets.GH_TOKEN }} - -jobs: - test: - strategy: - matrix: - os: - - macos-latest - - ubuntu-latest - node: - - 10 - - 12 - - 14 - - 16 - - 18 - - 20 - fail-fast: false - name: Testing Node ${{ matrix.node }} on ${{ matrix.os }} - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v3 - with: - submodules: true - fetch-depth: 0 - - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node }} - - - run: npm install - - run: npm test - - test-windows: - strategy: - matrix: - os: - - windows-2019 - node: - - 10 - - 12 - - 14 - - 16 - - 18 - - 20 - fail-fast: false - name: Testing Node ${{ matrix.node }} on ${{ matrix.os }} - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v3 - with: - submodules: true - fetch-depth: 0 - - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node }} - - - run: npm install - - run: npm run test-windows - - prebuild: - strategy: - matrix: - os: - - windows-2019 - - macos-latest - - ubuntu-latest - fail-fast: false - name: Prebuild for ${{ matrix.os }} - runs-on: ${{ matrix.os }} - needs: [test, test-windows] - steps: - - uses: actions/checkout@v3 - with: - submodules: true - fetch-depth: 0 - - uses: actions/setup-node@v3 - with: - node-version: 20 - - run: npm install - - if: runner.os == 'macOS' - run: ${{ env.NODE_PREBUILD_CMD }} --arch arm64 - - if: runner.os == 'macOS' - run: ${{ env.ELECTRON_PREBUILD_CMD }} --arch arm64 - - run: ${{ env.NODE_PREBUILD_CMD }} - - run: ${{ env.ELECTRON_PREBUILD_CMD }} diff --git a/vendored_parsers/tree-sitter-bash/.github/workflows/publish.yml b/vendored_parsers/tree-sitter-bash/.github/workflows/publish.yml deleted file mode 100644 index c2020e92f..000000000 --- a/vendored_parsers/tree-sitter-bash/.github/workflows/publish.yml +++ /dev/null @@ -1,103 +0,0 @@ -name: Release - -on: - workflow_run: - workflows: ["CI"] - branches: - - master - types: - - completed - -jobs: - release: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Get previous commit SHA - id: get_previous_commit - run: | - LATEST_TAG=$(git describe --tags --abbrev=0) - if [[ -z "$LATEST_TAG" ]]; then - echo "No tag found. Failing..." - exit 1 - fi - echo "latest_tag=${LATEST_TAG#v}" >> "$GITHUB_ENV" # Remove 'v' prefix from the tag - - - name: Check if version changed and is greater than the previous - id: version_check - run: | - # Compare the current version with the version from the previous commit - PREVIOUS_NPM_VERSION=${{ env.latest_tag }} - CURRENT_NPM_VERSION=$(jq -r '.version' package.json) - CURRENT_CARGO_VERSION=$(awk -F '"' '/^version/ {print $2}' Cargo.toml) - if [[ "$CURRENT_NPM_VERSION" != "$CURRENT_CARGO_VERSION" ]]; then # Cargo.toml and package.json versions must match - echo "Mismatch: NPM version ($CURRENT_NPM_VERSION) and Cargo.toml version ($CURRENT_CARGO_VERSION)" - echo "version_changed=false" >> "$GITHUB_ENV" - else - if [[ "$PREVIOUS_NPM_VERSION" == "$CURRENT_NPM_VERSION" ]]; then - echo "version_changed=" >> "$GITHUB_ENV" - else - IFS='.' read -ra PREVIOUS_VERSION_PARTS <<< "$PREVIOUS_NPM_VERSION" - IFS='.' read -ra CURRENT_VERSION_PARTS <<< "$CURRENT_NPM_VERSION" - VERSION_CHANGED=false - for i in "${!PREVIOUS_VERSION_PARTS[@]}"; do - if [[ ${CURRENT_VERSION_PARTS[i]} -gt ${PREVIOUS_VERSION_PARTS[i]} ]]; then - VERSION_CHANGED=true - break - elif [[ ${CURRENT_VERSION_PARTS[i]} -lt ${PREVIOUS_VERSION_PARTS[i]} ]]; then - break - fi - done - - echo "version_changed=$VERSION_CHANGED" >> "$GITHUB_ENV" - echo "current_version=${CURRENT_NPM_VERSION}" >> "$GITHUB_ENV" - fi - fi - - - name: Display result - run: | - echo "Version bump detected: ${{ env.version_changed }}" - - - name: Fail if version is lower - if: env.version_changed == 'false' - run: exit 1 - - - name: Setup Node - if: env.version_changed == 'true' - uses: actions/setup-node@v3 - with: - node-version: 18 - registry-url: "https://registry.npmjs.org" - - name: Publish to NPM - if: env.version_changed == 'true' - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - run: npm publish - - - name: Setup Rust - if: env.version_changed == 'true' - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - - name: Publish to Crates.io - if: env.version_changed == 'true' - uses: katyo/publish-crates@v2 - with: - registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} - - - name: Tag versions - if: env.version_changed == 'true' - run: | - git checkout master - git config user.name github-actions[bot] - git config user.email github-actions[bot]@users.noreply.github.com - git tag -d "v${{ env.current_version }}" || true - git push origin --delete "v${{ env.current_version }}" || true - git tag -a "v${{ env.current_version }}" -m "Version ${{ env.current_version }}" - git push origin "v${{ env.current_version }}" diff --git a/vendored_parsers/tree-sitter-bash/.gitignore b/vendored_parsers/tree-sitter-bash/.gitignore deleted file mode 100644 index c99713834..000000000 --- a/vendored_parsers/tree-sitter-bash/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -Cargo.lock -package-lock.json -node_modules -build -*.log -/examples/*/ -/target/ diff --git a/vendored_parsers/tree-sitter-bash/.npmignore b/vendored_parsers/tree-sitter-bash/.npmignore deleted file mode 100644 index 0f438b552..000000000 --- a/vendored_parsers/tree-sitter-bash/.npmignore +++ /dev/null @@ -1,6 +0,0 @@ -/test -/examples -/build -/script -/target -bindings/rust diff --git a/vendored_parsers/tree-sitter-bash/Cargo.toml b/vendored_parsers/tree-sitter-bash/Cargo.toml deleted file mode 100644 index d0060ac65..000000000 --- a/vendored_parsers/tree-sitter-bash/Cargo.toml +++ /dev/null @@ -1,24 +0,0 @@ -[package] -name = "tree-sitter-bash" -description = "Bash grammar for tree-sitter" -version = "0.20.2" -authors = ["Max Brunsfeld -#include "nan.h" - -using namespace v8; - -extern "C" TSLanguage * tree_sitter_bash(); - -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_bash()); - - Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("bash").ToLocalChecked()); - Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); -} - -NODE_MODULE(tree_sitter_bash_binding, Init) - -} // namespace diff --git a/vendored_parsers/tree-sitter-bash/bindings/node/index.js b/vendored_parsers/tree-sitter-bash/bindings/node/index.js deleted file mode 100644 index c3d70748d..000000000 --- a/vendored_parsers/tree-sitter-bash/bindings/node/index.js +++ /dev/null @@ -1,19 +0,0 @@ -try { - module.exports = require("../../build/Release/tree_sitter_bash_binding"); -} catch (error1) { - if (error1.code !== 'MODULE_NOT_FOUND') { - throw error1; - } - try { - module.exports = require("../../build/Debug/tree_sitter_bash_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/vendored_parsers/tree-sitter-bash/bindings/rust/README.md b/vendored_parsers/tree-sitter-bash/bindings/rust/README.md deleted file mode 100644 index 152508fcd..000000000 --- a/vendored_parsers/tree-sitter-bash/bindings/rust/README.md +++ /dev/null @@ -1,35 +0,0 @@ -# tree-sitter-bash - -This crate provides a Bash grammar for the [tree-sitter][] parsing library. -To use this crate, add it to the `[dependencies]` section of your `Cargo.toml` -file. (Note that you will probably also need to depend on the -[`tree-sitter`][tree-sitter crate] crate to use the parsed result in any useful -way.) - -```toml -[dependencies] -tree-sitter = "0.20.10" -tree-sitter-bash = "0.20.2" -``` - -Typically, you will use the [language][language func] function to add this -grammar to a tree-sitter [Parser][], and then use the parser to parse some code: - -```rust -let code = r#" - echo "Hello, world!" - echo "Goodbye, world!" -"#; -let mut parser = Parser::new(); -parser.set_language(tree_sitter_bash::language()).expect("Error loading Bash grammar"); -let parsed = parser.parse(code, None); -``` - -If you have any questions, please reach out to us in the [tree-sitter -discussions] page. - -[language func]: https://docs.rs/tree-sitter-bash/*/tree_sitter_bash/fn.language.html -[Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html -[tree-sitter]: https://tree-sitter.github.io/ -[tree-sitter crate]: https://crates.io/crates/tree-sitter -[tree-sitter discussions]: https://github.com/tree-sitter/tree-sitter/discussions diff --git a/vendored_parsers/tree-sitter-bash/bindings/rust/build.rs b/vendored_parsers/tree-sitter-bash/bindings/rust/build.rs deleted file mode 100644 index 0f722097e..000000000 --- a/vendored_parsers/tree-sitter-bash/bindings/rust/build.rs +++ /dev/null @@ -1,20 +0,0 @@ -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); - - 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()); -} diff --git a/vendored_parsers/tree-sitter-bash/bindings/rust/lib.rs b/vendored_parsers/tree-sitter-bash/bindings/rust/lib.rs deleted file mode 100644 index ef5fcc62c..000000000 --- a/vendored_parsers/tree-sitter-bash/bindings/rust/lib.rs +++ /dev/null @@ -1,52 +0,0 @@ -//! This crate provides Bash 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_bash::language()).expect("Error loading Bash 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_bash() -> 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_bash() } -} - -/// 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 HIGHLIGHT_QUERY: &str = include_str!("../../queries/highlights.scm"); -// pub const INJECTIONS_QUERY: &'static str = include_str!("../../queries/injections.scm"); -// pub const LOCALS_QUERY: &'static 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 Bash grammar"); - } -} diff --git a/vendored_parsers/tree-sitter-bash/bindings/swift/TreeSitterBash/bash.h b/vendored_parsers/tree-sitter-bash/bindings/swift/TreeSitterBash/bash.h deleted file mode 100644 index 4328570af..000000000 --- a/vendored_parsers/tree-sitter-bash/bindings/swift/TreeSitterBash/bash.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef TREE_SITTER_BASH_H_ -#define TREE_SITTER_BASH_H_ - -typedef struct TSLanguage TSLanguage; - -#ifdef __cplusplus -extern "C" { -#endif - -extern TSLanguage *tree_sitter_bash(); - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_BASH_H_ diff --git a/vendored_parsers/tree-sitter-bash/examples/atom.sh b/vendored_parsers/tree-sitter-bash/examples/atom.sh deleted file mode 100755 index 6b0e94430..000000000 --- a/vendored_parsers/tree-sitter-bash/examples/atom.sh +++ /dev/null @@ -1,143 +0,0 @@ -#!/bin/bash - -if [ "$(uname)" == 'Darwin' ]; then - OS='Mac' -elif [ "$(expr substr $(uname -s) 1 5)" == 'Linux' ]; then - OS='Linux' -else - echo "Your platform ($(uname -a)) is not supported." - exit 1 -fi - -if [ "$(basename $0)" == 'atom-beta' ]; then - BETA_VERSION=true -else - BETA_VERSION= -fi - -export ATOM_DISABLE_SHELLING_OUT_FOR_ENVIRONMENT=true - -while getopts ":wtfvh-:" opt; do - case "$opt" in - -) - case "${OPTARG}" in - wait) - WAIT=1 - ;; - help|version) - REDIRECT_STDERR=1 - EXPECT_OUTPUT=1 - ;; - foreground|benchmark|benchmark-test|test) - EXPECT_OUTPUT=1 - ;; - esac - ;; - w) - WAIT=1 - ;; - h|v) - REDIRECT_STDERR=1 - EXPECT_OUTPUT=1 - ;; - f|t) - EXPECT_OUTPUT=1 - ;; - esac -done - -if [ $REDIRECT_STDERR ]; then - exec 2> /dev/null -fi - -if [ $EXPECT_OUTPUT ]; then - export ELECTRON_ENABLE_LOGGING=1 -fi - -if [ $OS == 'Mac' ]; then - if [ -L "$0" ]; then - SCRIPT="$(readlink "$0")" - else - SCRIPT="$0" - fi - ATOM_APP="$(dirname "$(dirname "$(dirname "$(dirname "$SCRIPT")")")")" - if [ "$ATOM_APP" == . ]; then - unset ATOM_APP - else - ATOM_PATH="$(dirname "$ATOM_APP")" - ATOM_APP_NAME="$(basename "$ATOM_APP")" - fi - - if [ -n "$BETA_VERSION" ]; then - ATOM_EXECUTABLE_NAME="Atom Beta" - else - ATOM_EXECUTABLE_NAME="Atom" - fi - - if [ -z "${ATOM_PATH}" ]; then - # If ATOM_PATH isn't set, check /Applications and then ~/Applications for Atom.app - if [ -x "/Applications/$ATOM_APP_NAME" ]; then - ATOM_PATH="/Applications" - elif [ -x "$HOME/Applications/$ATOM_APP_NAME" ]; then - ATOM_PATH="$HOME/Applications" - else - # We haven't found an Atom.app, use spotlight to search for Atom - ATOM_PATH="$(mdfind "kMDItemCFBundleIdentifier == 'com.github.atom'" | grep -v ShipIt | head -1 | xargs -0 dirname)" - - # Exit if Atom can't be found - if [ ! -x "$ATOM_PATH/$ATOM_APP_NAME" ]; then - echo "Cannot locate ${ATOM_APP_NAME}, it is usually located in /Applications. Set the ATOM_PATH environment variable to the directory containing ${ATOM_APP_NAME}." - exit 1 - fi - fi - fi - - if [ $EXPECT_OUTPUT ]; then - "$ATOM_PATH/$ATOM_APP_NAME/Contents/MacOS/$ATOM_EXECUTABLE_NAME" --executed-from="$(pwd)" --pid=$$ "$@" - exit $? - else - open -a "$ATOM_PATH/$ATOM_APP_NAME" -n --args --executed-from="$(pwd)" --pid=$$ --path-environment="$PATH" "$@" - fi -elif [ $OS == 'Linux' ]; then - SCRIPT=$(readlink -f "$0") - USR_DIRECTORY=$(readlink -f $(dirname $SCRIPT)/..) - - if [ -n "$BETA_VERSION" ]; then - ATOM_PATH="$USR_DIRECTORY/share/atom-beta/atom" - else - ATOM_PATH="$USR_DIRECTORY/share/atom/atom" - fi - - ATOM_HOME="${ATOM_HOME:-$HOME/.atom}" - mkdir -p "$ATOM_HOME" - - : ${TMPDIR:=/tmp} - - [ -x "$ATOM_PATH" ] || ATOM_PATH="$TMPDIR/atom-build/Atom/atom" - - if [ $EXPECT_OUTPUT ]; then - "$ATOM_PATH" --executed-from="$(pwd)" --pid=$$ "$@" - exit $? - else - ( - nohup "$ATOM_PATH" --executed-from="$(pwd)" --pid=$$ "$@" > "$ATOM_HOME/nohup.out" 2>&1 - if [ $? -ne 0 ]; then - cat "$ATOM_HOME/nohup.out" - exit $? - fi - ) & - fi -fi - -# Exits this process when Atom is used as $EDITOR -on_die() { - exit 0 -} -trap 'on_die' SIGQUIT SIGTERM - -# If the wait flag is set, don't exit this process until Atom tells it to. -if [ $WAIT ]; then - while true; do - sleep 1 - done -fi diff --git a/vendored_parsers/tree-sitter-bash/examples/clean-old.sh b/vendored_parsers/tree-sitter-bash/examples/clean-old.sh deleted file mode 100755 index cda80f2f4..000000000 --- a/vendored_parsers/tree-sitter-bash/examples/clean-old.sh +++ /dev/null @@ -1,165 +0,0 @@ -#!/bin/bash - -# look for old 0.x cruft, and get rid of it. -# Should already be sitting in the npm folder. - -# This doesn't have to be quite as cross-platform as install.sh. -# There are some bash-isms, because maintaining *two* -# fully-portable posix/bourne sh scripts is too much for -# one project with a sane maintainer. - -# If readlink isn't available, then this is just too tricky. -# However, greadlink is fine, so Solaris can join the party, too. -readlink="readlink" -which $readlink >/dev/null 2>/dev/null -if [ $? -ne 0 ]; then - readlink="greadlink" - which $readlink >/dev/null 2>/dev/null - if [ $? -ne 0 ]; then - echo "Can't find the readlink or greadlink command. Aborting." - exit 1 - fi -fi - -if [ "x$npm_config_prefix" != "x" ]; then - PREFIXES=$npm_config_prefix -else - node="$NODE" - if [ "x$node" = "x" ]; then - node=`which node` - fi - if [ "x$node" = "x" ]; then - echo "Can't find node to determine prefix. Aborting." - exit 1 - fi - - - PREFIX=`dirname $node` - PREFIX=`dirname $PREFIX` - echo "cleanup prefix=$PREFIX" - PREFIXES=$PREFIX - - altprefix=`"$node" -e process.installPrefix` - if [ "x$altprefix" != "x" ] && [ "x$altprefix" != "x$PREFIX" ]; then - echo "altprefix=$altprefix" - PREFIXES="$PREFIX $altprefix" - fi -fi - -# now prefix is where npm would be rooted by default -# go hunting. - -packages= -for prefix in $PREFIXES; do - packages="$packages - "`ls "$prefix"/lib/node/.npm 2>/dev/null | grep -v .cache` -done - -packages=`echo $packages` - -filelist=() -fid=0 - -for prefix in $PREFIXES; do - # remove any links into the .npm dir, or links to - # version-named shims/symlinks. - for folder in share/man bin lib/node; do - find $prefix/$folder -type l | while read file; do - target=`$readlink $file | grep '/\.npm/'` - if [ "x$target" != "x" ]; then - # found one! - filelist[$fid]="$file" - let 'fid++' - # also remove any symlinks to this file. - base=`basename "$file"` - base=`echo "$base" | awk -F@ '{print $1}'` - if [ "x$base" != "x" ]; then - find "`dirname $file`" -type l -name "$base"'*' \ - | while read l; do - target=`$readlink "$l" | grep "$base"` - if [ "x$target" != "x" ]; then - filelist[$fid]="$1" - let 'fid++' - fi - done - fi - fi - done - - # Scour for shim files. These are relics of 0.2 npm installs. - # note: grep -r is not portable. - find $prefix/$folder -type f \ - | xargs grep -sl '// generated by npm' \ - | while read file; do - filelist[$fid]="$file" - let 'fid++' - done - done - - # now remove the package modules, and the .npm folder itself. - if [ "x$packages" != "x" ]; then - for pkg in $packages; do - filelist[$fid]="$prefix/lib/node/$pkg" - let 'fid++' - for i in $prefix/lib/node/$pkg\@*; do - filelist[$fid]="$i" - let 'fid++' - done - done - fi - - for folder in lib/node/.npm lib/npm share/npm; do - if [ -d $prefix/$folder ]; then - filelist[$fid]="$prefix/$folder" - let 'fid++' - fi - done -done - -# now actually clean, but only if there's anything TO clean -if [ "${#filelist[@]}" -gt 0 ]; then - echo "" - echo "This script will find and eliminate any shims, symbolic" - echo "links, and other cruft that was installed by npm 0.x." - echo "" - - if [ "x$packages" != "x" ]; then - echo "The following packages appear to have been installed with" - echo "an old version of npm, and will be removed forcibly:" - for pkg in $packages; do - echo " $pkg" - done - echo "Make a note of these. You may want to install them" - echo "with npm 1.0 when this process is completed." - echo "" - fi - - OK= - if [ "x$1" = "x-y" ]; then - OK="yes" - fi - - while [ "$OK" != "y" ] && [ "$OK" != "yes" ] && [ "$OK" != "no" ]; do - echo "Is this OK?" - echo " enter 'yes' or 'no'" - echo " or 'show' to see a list of files " - read OK - if [ "x$OK" = "xshow" ] || [ "x$OK" = "xs" ]; then - for i in "${filelist[@]}"; do - echo "$i" - done - fi - done - if [ "$OK" = "no" ]; then - echo "Aborting" - exit 1 - fi - for i in "${filelist[@]}"; do - rm -rf "$i" - done -fi - -echo "" -echo 'All clean!' - -exit 0 diff --git a/vendored_parsers/tree-sitter-bash/examples/doc-build.sh b/vendored_parsers/tree-sitter-bash/examples/doc-build.sh deleted file mode 100755 index 61819028b..000000000 --- a/vendored_parsers/tree-sitter-bash/examples/doc-build.sh +++ /dev/null @@ -1,119 +0,0 @@ -#!/usr/bin/env bash - -if [[ $DEBUG != "" ]]; then - set -x -fi -set -o errexit -set -o pipefail - -if ! [ -x node_modules/.bin/marked-man ]; then - ps=0 - if [ -f .building_marked-man ]; then - pid=$(cat .building_marked-man) - ps=$(ps -p $pid | grep $pid | wc -l) || true - fi - - if [ -f .building_marked-man ] && [ $ps != 0 ]; then - while [ -f .building_marked-man ]; do - sleep 1 - done - else - # a race to see which make process will be the one to install marked-man - echo $$ > .building_marked-man - sleep 1 - if [ $(cat .building_marked-man) == $$ ]; then - make node_modules/.bin/marked-man - rm .building_marked-man - else - while [ -f .building_marked-man ]; do - sleep 1 - done - fi - fi -fi - -if ! [ -x node_modules/.bin/marked ]; then - ps=0 - if [ -f .building_marked ]; then - pid=$(cat .building_marked) - ps=$(ps -p $pid | grep $pid | wc -l) || true - fi - - if [ -f .building_marked ] && [ $ps != 0 ]; then - while [ -f .building_marked ]; do - sleep 1 - done - else - # a race to see which make process will be the one to install marked - echo $$ > .building_marked - sleep 1 - if [ $(cat .building_marked) == $$ ]; then - make node_modules/.bin/marked - rm .building_marked - else - while [ -f .building_marked ]; do - sleep 1 - done - fi - fi -fi - -src=$1 -dest=$2 -name=$(basename ${src%.*}) -date=$(date -u +'%Y-%m-%d %H:%M:%S') -version=$(node cli.js -v) - -mkdir -p $(dirname $dest) - -html_replace_tokens () { - local url=$1 - sed "s|@NAME@|$name|g" \ - | sed "s|@DATE@|$date|g" \ - | sed "s|@URL@|$url|g" \ - | sed "s|@VERSION@|$version|g" \ - | perl -p -e 's/]*)>([^\(]*\([0-9]\)) -- (.*?)<\/h1>/

\2<\/h1>

\3<\/p>/g' \ - | perl -p -e 's/npm-npm/npm/g' \ - | perl -p -e 's/([^"-])(npm-)?README(?!\.html)(\(1\))?/\1README<\/a>/g' \ - | perl -p -e 's/<a href="[^"]+README.html">README<\/a><\/title>/<title>README<\/title>/g' \ - | perl -p -e 's/([^"-])([^\(> ]+)(\(1\))/\1<a href="..\/cli\/\2.html">\2\3<\/a>/g' \ - | perl -p -e 's/([^"-])([^\(> ]+)(\(3\))/\1<a href="..\/api\/\2.html">\2\3<\/a>/g' \ - | perl -p -e 's/([^"-])([^\(> ]+)(\(5\))/\1<a href="..\/files\/\2.html">\2\3<\/a>/g' \ - | perl -p -e 's/([^"-])([^\(> ]+)(\(7\))/\1<a href="..\/misc\/\2.html">\2\3<\/a>/g' \ - | perl -p -e 's/\([1357]\)<\/a><\/h1>/<\/a><\/h1>/g' \ - | (if [ $(basename $(dirname $dest)) == "doc" ]; then - perl -p -e 's/ href="\.\.\// href="/g' - else - cat - fi) -} - -man_replace_tokens () { - sed "s|@VERSION@|$version|g" \ - | perl -p -e 's/(npm\\-)?([a-zA-Z\\\.\-]*)\(1\)/npm help \2/g' \ - | perl -p -e 's/(npm\\-)?([a-zA-Z\\\.\-]*)\(([57])\)/npm help \3 \2/g' \ - | perl -p -e 's/(npm\\-)?([a-zA-Z\\\.\-]*)\(3\)/npm apihelp \2/g' \ - | perl -p -e 's/npm\(1\)/npm help npm/g' \ - | perl -p -e 's/npm\(3\)/npm apihelp npm/g' -} - -case $dest in - *.[1357]) - ./node_modules/.bin/marked-man --roff $src \ - | man_replace_tokens > $dest - exit $? - ;; - *.html) - url=${dest/html\//} - (cat html/dochead.html && \ - cat $src | ./node_modules/.bin/marked && - cat html/docfoot.html)\ - | html_replace_tokens $url \ - > $dest - exit $? - ;; - *) - echo "Invalid destination type: $dest" >&2 - exit 1 - ;; -esac diff --git a/vendored_parsers/tree-sitter-bash/examples/install.sh b/vendored_parsers/tree-sitter-bash/examples/install.sh deleted file mode 100755 index e6624f061..000000000 --- a/vendored_parsers/tree-sitter-bash/examples/install.sh +++ /dev/null @@ -1,270 +0,0 @@ -#!/bin/sh - -# A word about this shell script: -# -# It must work everywhere, including on systems that lack -# a /bin/bash, map 'sh' to ksh, ksh97, bash, ash, or zsh, -# and potentially have either a posix shell or bourne -# shell living at /bin/sh. -# -# See this helpful document on writing portable shell scripts: -# http://www.gnu.org/s/hello/manual/autoconf/Portable-Shell.html -# -# The only shell it won't ever work on is cmd.exe. - -if [ "x$0" = "xsh" ]; then - # run as curl | sh - # on some systems, you can just do cat>npm-install.sh - # which is a bit cuter. But on others, &1 is already closed, - # so catting to another script file won't do anything. - # Follow Location: headers, and fail on errors - curl -f -L -s https://www.npmjs.org/install.sh > npm-install-$$.sh - ret=$? - if [ $ret -eq 0 ]; then - (exit 0) - else - rm npm-install-$$.sh - echo "Failed to download script" >&2 - exit $ret - fi - sh npm-install-$$.sh - ret=$? - rm npm-install-$$.sh - exit $ret -fi - -# See what "npm_config_*" things there are in the env, -# and make them permanent. -# If this fails, it's not such a big deal. -configures="`env | grep 'npm_config_' | sed -e 's|^npm_config_||g'`" - -npm_config_loglevel="error" -if [ "x$npm_debug" = "x" ]; then - (exit 0) -else - echo "Running in debug mode." - echo "Note that this requires bash or zsh." - set -o xtrace - set -o pipefail - npm_config_loglevel="verbose" -fi -export npm_config_loglevel - -# make sure that node exists -node=`which node 2>&1` -ret=$? -if [ $ret -eq 0 ] && [ -x "$node" ]; then - (exit 0) -else - echo "npm cannot be installed without node.js." >&2 - echo "Install node first, and then try again." >&2 - echo "" >&2 - echo "Maybe node is installed, but not in the PATH?" >&2 - echo "Note that running as sudo can change envs." >&2 - echo "" - echo "PATH=$PATH" >&2 - exit $ret -fi - -# set the temp dir -TMP="${TMPDIR}" -if [ "x$TMP" = "x" ]; then - TMP="/tmp" -fi -TMP="${TMP}/npm.$$" -rm -rf "$TMP" || true -mkdir "$TMP" -if [ $? -ne 0 ]; then - echo "failed to mkdir $TMP" >&2 - exit 1 -fi - -BACK="$PWD" - -ret=0 -tar="${TAR}" -if [ -z "$tar" ]; then - tar="${npm_config_tar}" -fi -if [ -z "$tar" ]; then - tar=`which tar 2>&1` - ret=$? -fi - -if [ $ret -eq 0 ] && [ -x "$tar" ]; then - echo "tar=$tar" - echo "version:" - $tar --version - ret=$? -fi - -if [ $ret -eq 0 ]; then - (exit 0) -else - echo "No suitable tar program found." - exit 1 -fi - - - -# Try to find a suitable make -# If the MAKE environment var is set, use that. -# otherwise, try to find gmake, and then make. -# If no make is found, then just execute the necessary commands. - -# XXX For some reason, make is building all the docs every time. This -# is an annoying source of bugs. Figure out why this happens. -MAKE=NOMAKE - -if [ "x$MAKE" = "x" ]; then - make=`which gmake 2>&1` - if [ $? -eq 0 ] && [ -x "$make" ]; then - (exit 0) - else - make=`which make 2>&1` - if [ $? -eq 0 ] && [ -x "$make" ]; then - (exit 0) - else - make=NOMAKE - fi - fi -else - make="$MAKE" -fi - -if [ -x "$make" ]; then - (exit 0) -else - # echo "Installing without make. This may fail." >&2 - make=NOMAKE -fi - -# If there's no bash, then don't even try to clean -if [ -x "/bin/bash" ]; then - (exit 0) -else - clean="no" -fi - -node_version=`"$node" --version 2>&1` -ret=$? -if [ $ret -ne 0 ]; then - echo "You need node to run this program." >&2 - echo "node --version reports: $node_version" >&2 - echo "with exit code = $ret" >&2 - echo "Please install node before continuing." >&2 - exit $ret -fi - -t="${npm_install}" -if [ -z "$t" ]; then - # switch based on node version. - # note that we can only use strict sh-compatible patterns here. - case $node_version in - 0.[01234567].* | v0.[01234567].*) - echo "You are using an outdated and unsupported version of" >&2 - echo "node ($node_version). Please update node and try again." >&2 - exit 99 - ;; - *) - echo "install npm@latest" - t="latest" - ;; - esac -fi - -# need to echo "" after, because Posix sed doesn't treat EOF -# as an implied end of line. -url=`(curl -SsL https://registry.npmjs.org/npm/$t; echo "") \ - | sed -e 's/^.*tarball":"//' \ - | sed -e 's/".*$//'` - -ret=$? -if [ "x$url" = "x" ]; then - ret=125 - # try without the -e arg to sed. - url=`(curl -SsL https://registry.npmjs.org/npm/$t; echo "") \ - | sed 's/^.*tarball":"//' \ - | sed 's/".*$//'` - ret=$? - if [ "x$url" = "x" ]; then - ret=125 - fi -fi -if [ $ret -ne 0 ]; then - echo "Failed to get tarball url for npm/$t" >&2 - exit $ret -fi - - -echo "fetching: $url" >&2 - -cd "$TMP" \ - && curl -SsL "$url" \ - | $tar -xzf - \ - && cd "$TMP"/* \ - && (ver=`"$node" bin/read-package-json.js package.json version` - isnpm10=0 - if [ $ret -eq 0 ]; then - if [ -d node_modules ]; then - if "$node" node_modules/semver/bin/semver -v "$ver" -r "1" - then - isnpm10=1 - fi - else - if "$node" bin/semver -v "$ver" -r ">=1.0"; then - isnpm10=1 - fi - fi - fi - - ret=0 - if [ $isnpm10 -eq 1 ] && [ -f "scripts/clean-old.sh" ]; then - if [ "x$skipclean" = "x" ]; then - (exit 0) - else - clean=no - fi - if [ "x$clean" = "xno" ] \ - || [ "x$clean" = "xn" ]; then - echo "Skipping 0.x cruft clean" >&2 - ret=0 - elif [ "x$clean" = "xy" ] || [ "x$clean" = "xyes" ]; then - NODE="$node" /bin/bash "scripts/clean-old.sh" "-y" - ret=$? - else - NODE="$node" /bin/bash "scripts/clean-old.sh" </dev/tty - ret=$? - fi - fi - - if [ $ret -ne 0 ]; then - echo "Aborted 0.x cleanup. Exiting." >&2 - exit $ret - fi) \ - && (if [ "x$configures" = "x" ]; then - (exit 0) - else - echo "./configure $configures" - echo "$configures" > npmrc - fi) \ - && (if [ "$make" = "NOMAKE" ]; then - (exit 0) - elif "$make" uninstall install; then - (exit 0) - else - make="NOMAKE" - fi - if [ "$make" = "NOMAKE" ]; then - "$node" cli.js rm npm -gf - "$node" cli.js install -gf - fi) \ - && cd "$BACK" \ - && rm -rf "$TMP" \ - && echo "It worked" - -ret=$? -if [ $ret -ne 0 ]; then - echo "It failed" >&2 -fi -exit $ret diff --git a/vendored_parsers/tree-sitter-bash/examples/release.sh b/vendored_parsers/tree-sitter-bash/examples/release.sh deleted file mode 100644 index abe6c197f..000000000 --- a/vendored_parsers/tree-sitter-bash/examples/release.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash - -# script for creating a zip and tarball for inclusion in node - -unset CDPATH - -set -e - -rm -rf release *.tgz || true -mkdir release -node ./cli.js pack --loglevel error >/dev/null -mv *.tgz release -cd release -tar xzf *.tgz - -mkdir node_modules -mv package node_modules/npm - -# make the zip for windows users -cp node_modules/npm/bin/*.cmd . -zipname=npm-$(node ../cli.js -v).zip -zip -q -9 -r -X "$zipname" *.cmd node_modules - -# make the tar for node's deps -cd node_modules -tarname=npm-$(node ../../cli.js -v).tgz -tar czf "$tarname" npm - -cd .. -mv "node_modules/$tarname" . - -rm -rf *.cmd -rm -rf node_modules - -echo "release/$tarname" -echo "release/$zipname" diff --git a/vendored_parsers/tree-sitter-bash/examples/relocate.sh b/vendored_parsers/tree-sitter-bash/examples/relocate.sh deleted file mode 100755 index b7483f296..000000000 --- a/vendored_parsers/tree-sitter-bash/examples/relocate.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -# Change the cli shebang to point at the specified node -# Useful for when the program is moved around after install. -# Also used by the default 'make install' in node to point -# npm at the newly installed node, rather than the first one -# in the PATH, which would be the default otherwise. - -# bash /path/to/npm/scripts/relocate.sh $nodepath -# If $nodepath is blank, then it'll use /usr/bin/env - -dir="$(dirname "$(dirname "$0")")" -cli="$dir"/bin/npm-cli.js -tmp="$cli".tmp - -node="$1" -if [ "x$node" = "x" ]; then - node="/usr/bin/env node" -fi -node="#!$node" - -sed -e 1d "$cli" > "$tmp" -echo "$node" > "$cli" -cat "$tmp" >> "$cli" -rm "$tmp" -chmod ogu+x $cli diff --git a/vendored_parsers/tree-sitter-bash/examples/update-authors.sh b/vendored_parsers/tree-sitter-bash/examples/update-authors.sh deleted file mode 100755 index 75a6e549b..000000000 --- a/vendored_parsers/tree-sitter-bash/examples/update-authors.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -git log --reverse --format='%aN <%aE>' | perl -wnE ' -BEGIN { - say "# Authors sorted by whether or not they\x27re me"; -} - -print $seen{$_} = $_ unless $seen{$_} -' > AUTHORS diff --git a/vendored_parsers/tree-sitter-bash/grammar.js b/vendored_parsers/tree-sitter-bash/grammar.js deleted file mode 100644 index fbd2b0e33..000000000 --- a/vendored_parsers/tree-sitter-bash/grammar.js +++ /dev/null @@ -1,876 +0,0 @@ -/** - * @file Bash grammar for tree-sitter - * @author Max Brunsfeld - * @license MIT - */ - -/* eslint-disable arrow-parens */ -/* eslint-disable camelcase */ -/* eslint-disable-next-line spaced-comment */ -/// <reference types="tree-sitter-cli/dsl" /> -// @ts-check - -const SPECIAL_CHARACTERS = [ - '\'', '"', - '<', '>', - '{', '}', - '\\[', '\\]', - '(', ')', - '`', '$', - '|', '&', ';', - '\\', - '\\s', -]; - -module.exports = grammar({ - name: 'bash', - - conflicts: $ => [ - [$._expression, $.command_name], - [$.command, $.variable_assignments], - [$.compound_statement], - [$.redirected_statement, $.command], - [$.redirected_statement, $.command_substitution], - [$._expansion_body], - ], - - inline: $ => [ - $._statement, - $._terminator, - $._literal, - $._statements2, - $._primary_expression, - $._simple_variable_name, - $._multiline_variable_name, - $._special_variable_name, - $._c_word, - $._statement_not_subshell, - ], - - externals: $ => [ - $.heredoc_start, - $.simple_heredoc_body, - $._heredoc_body_beginning, - $._heredoc_body_middle, - $.heredoc_end, - $.file_descriptor, - $._empty_value, - $._concat, - $.variable_name, // Variable name followed by an operator like '=' or '+=' - $.regex, - $._regex_no_slash, - $._regex_no_space, - $.extglob_pattern, - $._bare_dollar, - $._brace_start, - '}', - ']', - '<<', - '<<-', - '\n', - ], - - extras: $ => [ - $.comment, - /\s/, - /\\\r?\n/, - /\\( |\t|\v|\f)/, - ], - - supertypes: $ => [ - $._statement, - $._expression, - $._primary_expression, - ], - - word: $ => $.word, - - rules: { - program: $ => optional($._statements), - - _statements: $ => prec(1, seq( - repeat(seq( - $._statement, - $._terminator, - )), - $._statement, - optional($._terminator), - )), - - _statements2: $ => repeat1(seq( - $._statement, - $._terminator, - )), - - _terminated_statement: $ => seq( - $._statement_not_subshell, - $._terminator, - ), - - // Statements - - _statement: $ => choice( - $._statement_not_subshell, - $.subshell, - ), - - _statement_not_subshell: $ => choice( - $.redirected_statement, - $.variable_assignment, - $.variable_assignments, - $.command, - $.declaration_command, - $.unset_command, - $.test_command, - $.negated_command, - $.for_statement, - $.c_style_for_statement, - $.while_statement, - $.if_statement, - $.case_statement, - $.pipeline, - $.list, - $.compound_statement, - $.function_definition, - ), - - redirected_statement: $ => prec.dynamic(-1, prec(-1, choice( - seq( - field('body', $._statement), - field('redirect', repeat1(choice( - $.file_redirect, - $.heredoc_redirect, - $.herestring_redirect, - ))), - ), - repeat1($.file_redirect), - ))), - - for_statement: $ => seq( - choice('for', 'select'), - field('variable', $._simple_variable_name), - optional(seq( - 'in', - field('value', repeat1($._literal)), - )), - $._terminator, - field('body', $.do_group), - ), - - c_style_for_statement: $ => seq( - 'for', - '((', - choice($._for_body), - '))', - optional(';'), - field('body', choice( - $.do_group, - $.compound_statement, - )), - ), - _for_body: $ => seq( - field('initializer', commaSep($._c_expression)), - $._c_terminator, - field('condition', commaSep($._c_expression)), - $._c_terminator, - field('update', commaSep($._c_expression)), - ), - - _c_expression: $ => choice( - $._c_expression_not_assignment, - alias($._c_variable_assignment, $.variable_assignment), - ), - _c_expression_not_assignment: $ => choice( - $._c_word, - $.simple_expansion, - $.expansion, - $.number, - $.string, - alias($._c_unary_expression, $.unary_expression), - alias($._c_binary_expression, $.binary_expression), - alias($._c_postfix_expression, $.postfix_expression), - alias($._c_parenthesized_expression, $.parenthesized_expression), - $.command_substitution, - ), - - _c_variable_assignment: $ => seq( - alias($._c_word, $.variable_name), - '=', - $._c_expression, - ), - _c_unary_expression: $ => prec.left(seq( - choice('++', '--'), - $._c_expression_not_assignment, - )), - _c_binary_expression: $ => prec.right(seq( - $._c_expression_not_assignment, - choice( - '+=', '-=', '*=', '/=', '%=', '**=', - '<<=', '>>=', '&=', '^=', '|=', - '==', '!=', '<=', '>=', '&&', '||', - '<<', '>>', - '+', '-', '*', '/', '%', '**', - '<', '>', - ), - $._c_expression_not_assignment, - )), - _c_postfix_expression: $ => seq( - $._c_expression_not_assignment, - choice('++', '--'), - ), - _c_parenthesized_expression: $ => seq( - '(', - commaSep1($._c_expression), - ')', - ), - _c_word: $ => alias(/[a-zA-Z_][a-zA-Z0-9_]*/, $.word), - - while_statement: $ => seq( - choice('while', 'until'), - field('condition', repeat1($._terminated_statement)), - field('body', $.do_group), - ), - - do_group: $ => seq( - 'do', - optional($._statements2), - 'done', - ), - - if_statement: $ => seq( - 'if', - field('condition', $._terminated_statement), - 'then', - optional($._statements2), - repeat($.elif_clause), - optional($.else_clause), - 'fi', - ), - - elif_clause: $ => seq( - 'elif', - $._terminated_statement, - 'then', - optional($._statements2), - ), - - else_clause: $ => seq( - 'else', - optional($._statements2), - ), - - case_statement: $ => seq( - 'case', - field('value', $._literal), - optional($._terminator), - 'in', - optional($._terminator), - optional(seq( - repeat($.case_item), - alias($.last_case_item, $.case_item), - )), - 'esac', - ), - - case_item: $ => seq( - choice( - seq( - optional('('), - field('value', choice($._literal, $.extglob_pattern)), - repeat(seq('|', field('value', choice($._literal, $.extglob_pattern)))), - ')', - ), - ), - optional($._statements), - prec(1, choice( - field('termination', ';;'), - field('fallthrough', choice(';&', ';;&')), - )), - ), - - last_case_item: $ => seq( - optional('('), - field('value', choice($._literal, $.extglob_pattern)), - repeat(seq('|', field('value', choice($._literal, $.extglob_pattern)))), - ')', - optional($._statements), - optional(prec(1, ';;')), - ), - - function_definition: $ => prec.right(seq( - choice( - seq( - 'function', - field('name', $.word), - optional(seq('(', ')')), - ), - seq( - field('name', $.word), - '(', ')', - ), - ), - field( - 'body', - choice( - $.compound_statement, - $.subshell, - $.test_command), - ), - optional($.file_redirect), - )), - - compound_statement: $ => seq( - '{', - optional(choice($._statements2, seq($._statement, $._terminator))), - token(prec(-1, '}')), - ), - - subshell: $ => seq( - '(', - $._statements, - ')', - ), - - pipeline: $ => prec.left(1, seq( - $._statement, - choice('|', '|&'), - $._statement, - )), - - list: $ => prec.left(-1, seq( - $._statement, - choice('&&', '||'), - $._statement, - )), - - // Commands - - negated_command: $ => seq( - '!', - choice( - prec(2, $.command), - prec(1, $.variable_assignment), - $.test_command, - $.subshell, - ), - ), - - test_command: $ => seq( - choice( - seq('[', optional(choice($._expression, $.redirected_statement)), ']'), - seq('[[', $._expression, ']]'), - seq('(', '(', optional($._expression), '))'), - ), - ), - - declaration_command: $ => prec.left(seq( - choice('declare', 'typeset', 'export', 'readonly', 'local'), - repeat(choice( - $._literal, - $._simple_variable_name, - $.variable_assignment, - )), - )), - - unset_command: $ => prec.left(seq( - choice('unset', 'unsetenv'), - repeat(choice( - $._literal, - $._simple_variable_name, - )), - )), - - command: $ => prec.left(seq( - repeat(choice( - $.variable_assignment, - $.file_redirect, - )), - field('name', $.command_name), - repeat(field('argument', choice( - $._literal, - alias($._bare_dollar, '$'), - seq( - choice('=~', '=='), - choice($._literal, $.regex), - ), - ))), - )), - - command_name: $ => $._literal, - - variable_assignment: $ => seq( - field('name', choice( - $.variable_name, - $.subscript, - )), - choice( - '=', - '+=', - ), - field('value', choice( - $._literal, - $.array, - $._empty_value, - alias($._comment_word, $.word), - )), - ), - - variable_assignments: $ => seq($.variable_assignment, repeat1($.variable_assignment)), - - subscript: $ => seq( - field('name', $.variable_name), - '[', - field('index', choice($._literal, $.binary_expression, $.unary_expression, $.parenthesized_expression)), - optional($._concat), - ']', - optional($._concat), - ), - - file_redirect: $ => prec.left(seq( - field('descriptor', optional($.file_descriptor)), - choice('<', '>', '>>', '&>', '&>>', '<&', '>&', '>|'), - field('destination', repeat1($._literal)), - )), - - heredoc_redirect: $ => seq( - field('descriptor', optional($.file_descriptor)), - choice('<<', '<<-'), - $.heredoc_start, - optional(seq( - choice(alias($._heredoc_pipeline, $.pipeline), $.file_redirect), - )), - '\n', - choice($._heredoc_body, $._simple_heredoc_body), - ), - - _heredoc_pipeline: $ => seq( - choice('|', '|&'), - $._statement, - ), - - _heredoc_body: $ => seq( - $.heredoc_body, - $.heredoc_end, - ), - - heredoc_body: $ => seq( - $._heredoc_body_beginning, - repeat(choice( - $.expansion, - $.simple_expansion, - $.command_substitution, - $._heredoc_body_middle, - )), - ), - - _simple_heredoc_body: $ => seq( - $.simple_heredoc_body, - $.heredoc_end, - ), - - herestring_redirect: $ => seq( - field('descriptor', optional($.file_descriptor)), - '<<<', - $._literal, - ), - - // Expressions - - _expression: $ => choice( - $._literal, - $.unary_expression, - $.ternary_expression, - $.binary_expression, - $.postfix_expression, - $.parenthesized_expression, - ), - - binary_expression: $ => prec.left(2, choice( - seq( - field('left', $._expression), - field('operator', choice( - '=', '==', '=~', '!=', - '+', '-', '+=', '-=', - '*', '/', '*=', '/=', - '%', '%=', '**', - '<', '>', '<=', '>=', - '||', '&&', - '<<', '>>', '<<=', '>>=', - '&', '|', '^', - '&=', '|=', '^=', - $.test_operator, - )), - field('right', $._expression), - ), - seq( - field('left', $._expression), - field('operator', choice('==', '=~', '!=')), - field('right', alias($._regex_no_space, $.regex)), - ), - )), - - ternary_expression: $ => prec.left( - seq( - field('condition', $._expression), - '?', - field('consequence', $._expression), - ':', - field('alternative', $._expression), - ), - ), - - unary_expression: $ => choice( - prec(1, seq( - token(prec(1, choice('-', '+', '~', '++', '--'))), - $._expression, - )), - prec.right(1, seq( - choice('!', $.test_operator), - $._expression, - )), - ), - - postfix_expression: $ => seq( - $._expression, - choice('++', '--'), - ), - - parenthesized_expression: $ => seq( - '(', - $._expression, - ')', - ), - - // Literals - - _literal: $ => choice( - $.concatenation, - $._primary_expression, - alias(prec(-2, repeat1($._special_character)), $.word), - ), - - _primary_expression: $ => choice( - $.word, - alias($.test_operator, $.word), - $.string, - $.raw_string, - $.translated_string, - $.ansi_c_string, - $.number, - $.expansion, - $.simple_expansion, - $.command_substitution, - $.process_substitution, - $.arithmetic_expansion, - $.brace_expression, - ), - - arithmetic_expansion: $ => seq(choice('$((', '(('), commaSep1($._arithmetic_expression), '))'), - - brace_expression: $ => seq( - alias($._brace_start, '{'), - alias(token.immediate(/\d+/), $.number), - token.immediate('..'), - alias(token.immediate(/\d+/), $.number), - token.immediate('}'), - ), - - _arithmetic_expression: $ => choice( - $._arithmetic_literal, - alias($._arithmetic_unary_expression, $.unary_expression), - alias($._arithmetic_ternary_expression, $.ternary_expression), - alias($._arithmetic_binary_expression, $.binary_expression), - alias($._arithmetic_postfix_expression, $.postfix_expression), - alias($._arithmetic_parenthesized_expression, $.parenthesized_expression), - ), - - _arithmetic_literal: $ => prec(1, choice( - $.number, - $.test_operator, - $.subscript, - $.simple_expansion, - $.expansion, - $._simple_variable_name, - $.variable_name, - )), - - _arithmetic_binary_expression: $ => prec.left(2, choice( - seq( - field('left', $._arithmetic_expression), - field('operator', choice( - '=', '==', '=~', '!=', - '+', '-', '+=', '-=', - '*', '/', '*=', '/=', - '%', '%=', '**', - '<', '>', '<=', '>=', - '||', '&&', - '<<', '>>', '<<=', '>>=', - '&', '|', '^', - '&=', '|=', '^=', - $.test_operator, - )), - field('right', $._arithmetic_expression), - ), - )), - - _arithmetic_ternary_expression: $ => prec.left( - seq( - field('condition', $._arithmetic_expression), - '?', - field('consequence', $._arithmetic_expression), - ':', - field('alternative', $._arithmetic_expression), - ), - ), - - _arithmetic_unary_expression: $ => choice( - prec(3, seq( - token(prec(1, choice('-', '+', '~', '++', '--'))), - $._arithmetic_expression, - )), - prec.right(3, seq( - '!', - $._arithmetic_expression, - )), - ), - - _arithmetic_postfix_expression: $ => seq( - $._arithmetic_expression, - choice('++', '--'), - ), - - _arithmetic_parenthesized_expression: $ => seq( - '(', - $._arithmetic_expression, - ')', - ), - - - concatenation: $ => prec(-1, seq( - choice( - $._primary_expression, - alias($._special_character, $.word), - ), - repeat1(seq( - choice($._concat, alias(/`\s*`/, '``')), - choice( - $._primary_expression, - alias($._special_character, $.word), - alias($._comment_word, $.word), - ), - )), - optional(seq($._concat, '$')), - )), - - _special_character: _ => token(prec(-1, choice('{', '}', '[', ']'))), - - string: $ => seq( - '"', - repeat(seq( - choice( - seq(optional('$'), $._string_content), - $.expansion, - $.simple_expansion, - $.command_substitution, - $.arithmetic_expansion, - ), - optional($._concat), - )), - optional('$'), - '"', - ), - - _string_content: _ => token(prec(-1, /([^"`$\\]|\\(.|\r?\n))+/)), - - translated_string: $ => seq('$', $.string), - - array: $ => seq( - '(', - repeat($._literal), - ')', - ), - - raw_string: _ => /'[^']*'/, - - ansi_c_string: _ => /\$'([^']|\\')*'/, - - number: $ => choice( - /-?(0x)?[0-9]+(#[0-9A-Za-z@_]+)?/, - // the base can be an expansion - seq(/-?(0x)?[0-9]+#/, $.expansion), - ), - - simple_expansion: $ => seq( - '$', - choice( - $._simple_variable_name, - $._multiline_variable_name, - $._special_variable_name, - alias('!', $.special_variable_name), - alias('#', $.special_variable_name), - ), - ), - - string_expansion: $ => seq('$', $.string), - - expansion: $ => seq( - '${', - repeat(choice('#', '!', '=')), - optional($._expansion_body), - '}', - ), - _expansion_body: $ => choice( - seq( - choice($.variable_name, $._special_variable_name), - choice( - seq( - field('operator', choice('=', ':=', '-', ':-', '+', ':+', '?', ':?')), - repeat(choice($._literal, $.array)), - ), - seq( - field('operator', choice('#', '##', '%', '%%')), - choice($.regex, alias(')', $.regex), $.string, $.raw_string), - ), - seq( - choice('/', '//', '/#', '/%'), - alias($._regex_no_slash, $.regex), - // This can be elided - optional(seq( - '/', - optional(seq( - $._literal, - optional('/'), - )), - )), - ), - seq( - choice(',', ',,', '^', '^^'), - $.regex, - ), - seq( - ':', - choice($._simple_variable_name, $.number, $.arithmetic_expansion, $.expansion, '\n'), - optional(seq( - ':', - optional(choice($._simple_variable_name, $.number, $.arithmetic_expansion, '\n')), - )), - ), - seq( - '@', - field('operator', choice('U', 'u', 'L', 'Q', 'E', 'P', 'A', 'K', 'a', 'k')), - ), - ), - ), - seq( - choice( - $.subscript, - $._simple_variable_name, - $._special_variable_name, - $.command_substitution, - ), - optional(seq( - choice( - alias(token(prec(1, ',')), ','), - alias(token(prec(1, ',,')), ',,'), - alias(token(prec(1, '^')), '^'), - alias(token(prec(1, '^^')), '^^'), - ), - optional($.regex), - )), - repeat(prec.right(choice( - $._literal, $.array, - ':', ':?', '=', ':-', '%', '-', '#', ';', '|', '(', ')', '<', '>', - ))), - ), - ), - - command_substitution: $ => choice( - seq('$(', $._statements, ')'), - seq('$(', $.file_redirect, ')'), - prec(1, seq('`', $._statements, '`')), - seq('$`', $._statements, '`'), - ), - - process_substitution: $ => seq( - choice('<(', '>('), - $._statements, - ')', - ), - - comment: _ => token(prec(-10, /#.*/)), - _comment_word: _ => token(prec(-9, seq( - choice( - noneOf(...SPECIAL_CHARACTERS), - seq('\\', noneOf('\\s')), - ), - repeat(choice( - noneOf(...SPECIAL_CHARACTERS), - seq('\\', noneOf('\\s')), - '\\ ', - )), - ))), - - _simple_variable_name: $ => alias(/\w+/, $.variable_name), - _multiline_variable_name: $ => alias( - token(prec(-1, /(\w|\\\r?\n)+/)), - $.variable_name, - ), - - _special_variable_name: $ => alias(choice('*', '@', '?', '-', '$', '0', '_'), $.special_variable_name), - - word: _ => token(seq( - choice( - noneOf('#', ...SPECIAL_CHARACTERS), - seq('\\', noneOf('\\s')), - ), - repeat(choice( - noneOf(...SPECIAL_CHARACTERS), - seq('\\', noneOf('\\s')), - '\\ ', - )), - )), - - test_operator: _ => token(prec(1, seq('-', /[a-zA-Z]+/))), - - _c_terminator: _ => choice(';', '\n', '&'), - _terminator: _ => choice(';', ';;', '\n', '&'), - }, -}); - -/** - * Returns a regular expression that matches any character except the ones - * provided. - * - * @param {...string} characters - * - * @return {RegExp} - * - */ -function noneOf(...characters) { - const negatedString = characters.map(c => c == '\\' ? '\\\\' : c).join(''); - return new RegExp('[^' + negatedString + ']'); -} - -/** - * Creates a rule to optionally match one or more of the rules separated by a comma - * - * @param {RuleOrLiteral} rule - * - * @return {ChoiceRule} - * - */ -function commaSep(rule) { - return optional(commaSep1(rule)); -} - -/** - * Creates a rule to match one or more of the rules separated by a comma - * - * @param {RuleOrLiteral} rule - * - * @return {SeqRule} - * - */ -function commaSep1(rule) { - return seq(rule, repeat(seq(',', rule))); -} diff --git a/vendored_parsers/tree-sitter-bash/package.json b/vendored_parsers/tree-sitter-bash/package.json deleted file mode 100644 index 7d5652d05..000000000 --- a/vendored_parsers/tree-sitter-bash/package.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "name": "tree-sitter-bash", - "version": "0.20.2", - "description": "Bash grammar for tree-sitter", - "main": "bindings/node", - "keywords": [ - "parser", - "lexer", - "bash" - ], - "author": "Max Brunsfeld", - "license": "MIT", - "dependencies": { - "nan": "^2.17.0", - "prebuild-install": "^7.1.1", - "web-tree-sitter": "^0.20.8" - }, - "devDependencies": { - "eslint": "^8.47.0", - "eslint-config-google": "^0.14.0", - "node-gyp": "^9.4.0", - "prebuild": "^11.0.4", - "tree-sitter-cli": "^0.20.8" - }, - "overrides": { - "prebuild": { - "node-gyp": "$node-gyp" - } - }, - "scripts": { - "install": "prebuild-install || node-gyp rebuild", - "pre-build": "prebuild -t 14.0.0 -t 16.0.0 -t 18.0.0 -t 20.0.0 --strip && prebuild -r electron -t 16.0.0 -t 17.0.0 -t 18.0.0 -t 19.0.0 -t 20.0.0 -t 21.0.0 -t 22.0.0 -t 23.0.0 -t 23.0.0 --strip", - "pre-build:upload": "prebuild --upload-all", - "build": "tree-sitter generate && node-gyp build", - "build-wasm": "tree-sitter build-wasm", - "lint": "eslint grammar.js", - "parse": "tree-sitter parse", - "test": "tree-sitter test && script/parse-examples", - "test-windows": "tree-sitter test" - }, - "repository": "https://github.com/tree-sitter/tree-sitter-bash", - "tree-sitter": [ - { - "scope": "source.bash", - "file-types": [ - "sh", - "bash" - ] - } - ] -} diff --git a/vendored_parsers/tree-sitter-bash/queries/highlights.scm b/vendored_parsers/tree-sitter-bash/queries/highlights.scm deleted file mode 100644 index f33a7c2d3..000000000 --- a/vendored_parsers/tree-sitter-bash/queries/highlights.scm +++ /dev/null @@ -1,56 +0,0 @@ -[ - (string) - (raw_string) - (heredoc_body) - (heredoc_start) -] @string - -(command_name) @function - -(variable_name) @property - -[ - "case" - "do" - "done" - "elif" - "else" - "esac" - "export" - "fi" - "for" - "function" - "if" - "in" - "select" - "then" - "unset" - "until" - "while" -] @keyword - -(comment) @comment - -(function_definition name: (word) @function) - -(file_descriptor) @number - -[ - (command_substitution) - (process_substitution) - (expansion) -]@embedded - -[ - "$" - "&&" - ">" - ">>" - "<" - "|" -] @operator - -( - (command (_) @constant) - (#match? @constant "^-") -) diff --git a/vendored_parsers/tree-sitter-bash/script/known-failures.txt b/vendored_parsers/tree-sitter-bash/script/known-failures.txt deleted file mode 100644 index 5af880c37..000000000 --- a/vendored_parsers/tree-sitter-bash/script/known-failures.txt +++ /dev/null @@ -1,23 +0,0 @@ -examples/bash/tests/arith.tests -examples/bash/tests/array.tests -examples/bash/tests/assoc.tests -examples/bash/tests/case.tests -examples/bash/tests/comsub-posix.tests -examples/bash/tests/comsub.tests -examples/bash/tests/cond.tests -examples/bash/tests/errors.tests -examples/bash/tests/exp.tests -examples/bash/tests/extglob.tests -examples/bash/tests/glob.tests -examples/bash/tests/heredoc.tests -examples/bash/tests/histexp.tests -examples/bash/tests/more-exp.tests -examples/bash/tests/new-exp.tests -examples/bash/tests/posixexp.tests -examples/bash/tests/posixexp2.tests -examples/bash/tests/posixpat.tests -examples/bash/tests/printf.tests -examples/bash/tests/quote.tests -examples/bash/tests/quotearray.tests -examples/bash/tests/redir.tests -examples/bash/tests/test.tests diff --git a/vendored_parsers/tree-sitter-bash/script/parse-examples b/vendored_parsers/tree-sitter-bash/script/parse-examples deleted file mode 100755 index 75130e63c..000000000 --- a/vendored_parsers/tree-sitter-bash/script/parse-examples +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/env bash - -set -eu - -cd "$(dirname "$0")/.." - -function clone_repo() { - owner=$1 - name=$2 - url=$3 - sha=$4 - - path=examples/$name - if [ ! -d "$path" ]; then - echo "Cloning $owner/$name" - git clone "$url" "$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 Bash-it bash-it https://github.com/Bash-it/bash-it e38696a0acfdb6e4fbeb6963801c417d6ca7e9a7 -clone_repo bash bash https://git.savannah.gnu.org/git/bash.git ec8113b9861375e4e17b3307372569d429dec814 - -known_failures="$(cat script/known-failures.txt)" - -# shellcheck disable=2046 -tree-sitter parse -q \ - examples/bash-it/**/*.bash \ - examples/bash-it/**/*.sh \ - examples/bash/tests/*.tests \ - examples/*.sh \ - $(for failure in $known_failures; do echo "!${failure}"; done) - -example_count=$(find examples -name '*.bash' -o -name '*.sh' -o -name '*.tests' | 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/vendored_parsers/tree-sitter-bash/script/update-known-failures.sh b/vendored_parsers/tree-sitter-bash/script/update-known-failures.sh deleted file mode 100755 index a8ee50c7f..000000000 --- a/vendored_parsers/tree-sitter-bash/script/update-known-failures.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash -shopt -s globstar - -tree-sitter parse -q -t \ - examples/bash-it/**/*.bash \ - examples/bash-it/**/*.sh \ - examples/bash/tests/*.tests \ - examples/*.sh \ - | egrep 'ERROR|MISSING' \ - | tee >(cut -d' ' -f1 | sort > script/known-failures.txt) diff --git a/vendored_parsers/tree-sitter-bash/src/grammar.json b/vendored_parsers/tree-sitter-bash/src/grammar.json deleted file mode 100644 index 7e20f705e..000000000 --- a/vendored_parsers/tree-sitter-bash/src/grammar.json +++ /dev/null @@ -1,4709 +0,0 @@ -{ - "name": "bash", - "word": "word", - "rules": { - "program": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_statements" - }, - { - "type": "BLANK" - } - ] - }, - "_statements": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "SYMBOL", - "name": "_terminator" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_terminator" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "_statements2": { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "SYMBOL", - "name": "_terminator" - } - ] - } - }, - "_terminated_statement": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_statement_not_subshell" - }, - { - "type": "SYMBOL", - "name": "_terminator" - } - ] - }, - "_statement": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_statement_not_subshell" - }, - { - "type": "SYMBOL", - "name": "subshell" - } - ] - }, - "_statement_not_subshell": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "redirected_statement" - }, - { - "type": "SYMBOL", - "name": "variable_assignment" - }, - { - "type": "SYMBOL", - "name": "variable_assignments" - }, - { - "type": "SYMBOL", - "name": "command" - }, - { - "type": "SYMBOL", - "name": "declaration_command" - }, - { - "type": "SYMBOL", - "name": "unset_command" - }, - { - "type": "SYMBOL", - "name": "test_command" - }, - { - "type": "SYMBOL", - "name": "negated_command" - }, - { - "type": "SYMBOL", - "name": "for_statement" - }, - { - "type": "SYMBOL", - "name": "c_style_for_statement" - }, - { - "type": "SYMBOL", - "name": "while_statement" - }, - { - "type": "SYMBOL", - "name": "if_statement" - }, - { - "type": "SYMBOL", - "name": "case_statement" - }, - { - "type": "SYMBOL", - "name": "pipeline" - }, - { - "type": "SYMBOL", - "name": "list" - }, - { - "type": "SYMBOL", - "name": "compound_statement" - }, - { - "type": "SYMBOL", - "name": "function_definition" - } - ] - }, - "redirected_statement": { - "type": "PREC_DYNAMIC", - "value": -1, - "content": { - "type": "PREC", - "value": -1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_statement" - } - }, - { - "type": "FIELD", - "name": "redirect", - "content": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "file_redirect" - }, - { - "type": "SYMBOL", - "name": "heredoc_redirect" - }, - { - "type": "SYMBOL", - "name": "herestring_redirect" - } - ] - } - } - } - ] - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "file_redirect" - } - } - ] - } - } - }, - "for_statement": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "for" - }, - { - "type": "STRING", - "value": "select" - } - ] - }, - { - "type": "FIELD", - "name": "variable", - "content": { - "type": "SYMBOL", - "name": "_simple_variable_name" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_literal" - } - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_terminator" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "do_group" - } - } - ] - }, - "c_style_for_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "for" - }, - { - "type": "STRING", - "value": "((" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_for_body" - } - ] - }, - { - "type": "STRING", - "value": "))" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "do_group" - }, - { - "type": "SYMBOL", - "name": "compound_statement" - } - ] - } - } - ] - }, - "_for_body": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "initializer", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_c_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_c_expression" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "_c_terminator" - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_c_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_c_expression" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "_c_terminator" - }, - { - "type": "FIELD", - "name": "update", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_c_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_c_expression" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - } - ] - }, - "_c_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_c_expression_not_assignment" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_c_variable_assignment" - }, - "named": true, - "value": "variable_assignment" - } - ] - }, - "_c_expression_not_assignment": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_c_word" - }, - { - "type": "SYMBOL", - "name": "simple_expansion" - }, - { - "type": "SYMBOL", - "name": "expansion" - }, - { - "type": "SYMBOL", - "name": "number" - }, - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_c_unary_expression" - }, - "named": true, - "value": "unary_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_c_binary_expression" - }, - "named": true, - "value": "binary_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_c_postfix_expression" - }, - "named": true, - "value": "postfix_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_c_parenthesized_expression" - }, - "named": true, - "value": "parenthesized_expression" - }, - { - "type": "SYMBOL", - "name": "command_substitution" - } - ] - }, - "_c_variable_assignment": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_c_word" - }, - "named": true, - "value": "variable_name" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "_c_expression" - } - ] - }, - "_c_unary_expression": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" - } - ] - }, - { - "type": "SYMBOL", - "name": "_c_expression_not_assignment" - } - ] - } - }, - "_c_binary_expression": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_c_expression_not_assignment" - }, - { - "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": "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": "STRING", - "value": ">" - } - ] - }, - { - "type": "SYMBOL", - "name": "_c_expression_not_assignment" - } - ] - } - }, - "_c_postfix_expression": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_c_expression_not_assignment" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" - } - ] - } - ] - }, - "_c_parenthesized_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_c_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_c_expression" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_c_word": { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[a-zA-Z_][a-zA-Z0-9_]*" - }, - "named": true, - "value": "word" - }, - "while_statement": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "while" - }, - { - "type": "STRING", - "value": "until" - } - ] - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_terminated_statement" - } - } - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "do_group" - } - } - ] - }, - "do_group": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "do" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_statements2" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "done" - } - ] - }, - "if_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "if" - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_terminated_statement" - } - }, - { - "type": "STRING", - "value": "then" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_statements2" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "elif_clause" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "else_clause" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "fi" - } - ] - }, - "elif_clause": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "elif" - }, - { - "type": "SYMBOL", - "name": "_terminated_statement" - }, - { - "type": "STRING", - "value": "then" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_statements2" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "else_clause": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "else" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_statements2" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "case_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "case" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_literal" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_terminator" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_terminator" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "case_item" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "last_case_item" - }, - "named": true, - "value": "case_item" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "esac" - } - ] - }, - "case_item": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "SYMBOL", - "name": "extglob_pattern" - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "SYMBOL", - "name": "extglob_pattern" - } - ] - } - } - ] - } - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_statements" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PREC", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "termination", - "content": { - "type": "STRING", - "value": ";;" - } - }, - { - "type": "FIELD", - "name": "fallthrough", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";&" - }, - { - "type": "STRING", - "value": ";;&" - } - ] - } - } - ] - } - } - ] - }, - "last_case_item": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "SYMBOL", - "name": "extglob_pattern" - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "SYMBOL", - "name": "extglob_pattern" - } - ] - } - } - ] - } - }, - { - "type": "STRING", - "value": ")" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_statements" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PREC", - "value": 1, - "content": { - "type": "STRING", - "value": ";;" - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "function_definition": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "function" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "word" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "word" - } - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "compound_statement" - }, - { - "type": "SYMBOL", - "name": "subshell" - }, - { - "type": "SYMBOL", - "name": "test_command" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "file_redirect" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "compound_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_statements2" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "SYMBOL", - "name": "_terminator" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": -1, - "content": { - "type": "STRING", - "value": "}" - } - } - } - ] - }, - "subshell": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_statements" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "pipeline": { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "STRING", - "value": "|&" - } - ] - }, - { - "type": "SYMBOL", - "name": "_statement" - } - ] - } - }, - "list": { - "type": "PREC_LEFT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "&&" - }, - { - "type": "STRING", - "value": "||" - } - ] - }, - { - "type": "SYMBOL", - "name": "_statement" - } - ] - } - }, - "negated_command": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PREC", - "value": 2, - "content": { - "type": "SYMBOL", - "name": "command" - } - }, - { - "type": "PREC", - "value": 1, - "content": { - "type": "SYMBOL", - "name": "variable_assignment" - } - }, - { - "type": "SYMBOL", - "name": "test_command" - }, - { - "type": "SYMBOL", - "name": "subshell" - } - ] - } - ] - }, - "test_command": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "redirected_statement" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[[" - }, - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": "]]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "))" - } - ] - } - ] - } - ] - }, - "declaration_command": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "declare" - }, - { - "type": "STRING", - "value": "typeset" - }, - { - "type": "STRING", - "value": "export" - }, - { - "type": "STRING", - "value": "readonly" - }, - { - "type": "STRING", - "value": "local" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "SYMBOL", - "name": "_simple_variable_name" - }, - { - "type": "SYMBOL", - "name": "variable_assignment" - } - ] - } - } - ] - } - }, - "unset_command": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "unset" - }, - { - "type": "STRING", - "value": "unsetenv" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "SYMBOL", - "name": "_simple_variable_name" - } - ] - } - } - ] - } - }, - "command": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "variable_assignment" - }, - { - "type": "SYMBOL", - "name": "file_redirect" - } - ] - } - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "command_name" - } - }, - { - "type": "REPEAT", - "content": { - "type": "FIELD", - "name": "argument", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_bare_dollar" - }, - "named": false, - "value": "$" - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=~" - }, - { - "type": "STRING", - "value": "==" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "SYMBOL", - "name": "regex" - } - ] - } - ] - } - ] - } - } - } - ] - } - }, - "command_name": { - "type": "SYMBOL", - "name": "_literal" - }, - "variable_assignment": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "variable_name" - }, - { - "type": "SYMBOL", - "name": "subscript" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": "+=" - } - ] - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "SYMBOL", - "name": "array" - }, - { - "type": "SYMBOL", - "name": "_empty_value" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_comment_word" - }, - "named": true, - "value": "word" - } - ] - } - } - ] - }, - "variable_assignments": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "variable_assignment" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "variable_assignment" - } - } - ] - }, - "subscript": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "variable_name" - } - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "FIELD", - "name": "index", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "SYMBOL", - "name": "binary_expression" - }, - { - "type": "SYMBOL", - "name": "unary_expression" - }, - { - "type": "SYMBOL", - "name": "parenthesized_expression" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_concat" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_concat" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "file_redirect": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "descriptor", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "file_descriptor" - }, - { - "type": "BLANK" - } - ] - } - }, - { - "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": "FIELD", - "name": "destination", - "content": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_literal" - } - } - } - ] - } - }, - "heredoc_redirect": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "descriptor", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "file_descriptor" - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "<<" - }, - { - "type": "STRING", - "value": "<<-" - } - ] - }, - { - "type": "SYMBOL", - "name": "heredoc_start" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_heredoc_pipeline" - }, - "named": true, - "value": "pipeline" - }, - { - "type": "SYMBOL", - "name": "file_redirect" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "\n" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_heredoc_body" - }, - { - "type": "SYMBOL", - "name": "_simple_heredoc_body" - } - ] - } - ] - }, - "_heredoc_pipeline": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "STRING", - "value": "|&" - } - ] - }, - { - "type": "SYMBOL", - "name": "_statement" - } - ] - }, - "_heredoc_body": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "heredoc_body" - }, - { - "type": "SYMBOL", - "name": "heredoc_end" - } - ] - }, - "heredoc_body": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_heredoc_body_beginning" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "expansion" - }, - { - "type": "SYMBOL", - "name": "simple_expansion" - }, - { - "type": "SYMBOL", - "name": "command_substitution" - }, - { - "type": "SYMBOL", - "name": "_heredoc_body_middle" - } - ] - } - } - ] - }, - "_simple_heredoc_body": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "simple_heredoc_body" - }, - { - "type": "SYMBOL", - "name": "heredoc_end" - } - ] - }, - "herestring_redirect": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "descriptor", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "file_descriptor" - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "STRING", - "value": "<<<" - }, - { - "type": "SYMBOL", - "name": "_literal" - } - ] - }, - "_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "SYMBOL", - "name": "unary_expression" - }, - { - "type": "SYMBOL", - "name": "ternary_expression" - }, - { - "type": "SYMBOL", - "name": "binary_expression" - }, - { - "type": "SYMBOL", - "name": "postfix_expression" - }, - { - "type": "SYMBOL", - "name": "parenthesized_expression" - } - ] - }, - "binary_expression": { - "type": "PREC_LEFT", - "value": 2, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "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": "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": "STRING", - "value": "|" - }, - { - "type": "STRING", - "value": "^" - }, - { - "type": "STRING", - "value": "&=" - }, - { - "type": "STRING", - "value": "|=" - }, - { - "type": "STRING", - "value": "^=" - }, - { - "type": "SYMBOL", - "name": "test_operator" - } - ] - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "==" - }, - { - "type": "STRING", - "value": "=~" - }, - { - "type": "STRING", - "value": "!=" - } - ] - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_regex_no_space" - }, - "named": true, - "value": "regex" - } - } - ] - } - ] - } - }, - "ternary_expression": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "STRING", - "value": "?" - }, - { - "type": "FIELD", - "name": "consequence", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "alternative", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - "unary_expression": { - "type": "CHOICE", - "members": [ - { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" - } - ] - } - } - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - }, - { - "type": "PREC_RIGHT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "SYMBOL", - "name": "test_operator" - } - ] - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - } - ] - }, - "postfix_expression": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" - } - ] - } - ] - }, - "parenthesized_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_literal": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "concatenation" - }, - { - "type": "SYMBOL", - "name": "_primary_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "PREC", - "value": -2, - "content": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_special_character" - } - } - }, - "named": true, - "value": "word" - } - ] - }, - "_primary_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "word" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "test_operator" - }, - "named": true, - "value": "word" - }, - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "SYMBOL", - "name": "raw_string" - }, - { - "type": "SYMBOL", - "name": "translated_string" - }, - { - "type": "SYMBOL", - "name": "ansi_c_string" - }, - { - "type": "SYMBOL", - "name": "number" - }, - { - "type": "SYMBOL", - "name": "expansion" - }, - { - "type": "SYMBOL", - "name": "simple_expansion" - }, - { - "type": "SYMBOL", - "name": "command_substitution" - }, - { - "type": "SYMBOL", - "name": "process_substitution" - }, - { - "type": "SYMBOL", - "name": "arithmetic_expansion" - }, - { - "type": "SYMBOL", - "name": "brace_expression" - } - ] - }, - "arithmetic_expansion": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "$((" - }, - { - "type": "STRING", - "value": "((" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_arithmetic_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_arithmetic_expression" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "))" - } - ] - }, - "brace_expression": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_brace_start" - }, - "named": false, - "value": "{" - }, - { - "type": "ALIAS", - "content": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "\\d+" - } - }, - "named": true, - "value": "number" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ".." - } - }, - { - "type": "ALIAS", - "content": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "\\d+" - } - }, - "named": true, - "value": "number" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "}" - } - } - ] - }, - "_arithmetic_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_arithmetic_literal" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_arithmetic_unary_expression" - }, - "named": true, - "value": "unary_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_arithmetic_ternary_expression" - }, - "named": true, - "value": "ternary_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_arithmetic_binary_expression" - }, - "named": true, - "value": "binary_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_arithmetic_postfix_expression" - }, - "named": true, - "value": "postfix_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_arithmetic_parenthesized_expression" - }, - "named": true, - "value": "parenthesized_expression" - } - ] - }, - "_arithmetic_literal": { - "type": "PREC", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "number" - }, - { - "type": "SYMBOL", - "name": "test_operator" - }, - { - "type": "SYMBOL", - "name": "subscript" - }, - { - "type": "SYMBOL", - "name": "simple_expansion" - }, - { - "type": "SYMBOL", - "name": "expansion" - }, - { - "type": "SYMBOL", - "name": "_simple_variable_name" - }, - { - "type": "SYMBOL", - "name": "variable_name" - } - ] - } - }, - "_arithmetic_binary_expression": { - "type": "PREC_LEFT", - "value": 2, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_arithmetic_expression" - } - }, - { - "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": "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": "STRING", - "value": "|" - }, - { - "type": "STRING", - "value": "^" - }, - { - "type": "STRING", - "value": "&=" - }, - { - "type": "STRING", - "value": "|=" - }, - { - "type": "STRING", - "value": "^=" - }, - { - "type": "SYMBOL", - "name": "test_operator" - } - ] - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_arithmetic_expression" - } - } - ] - } - ] - } - }, - "_arithmetic_ternary_expression": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_arithmetic_expression" - } - }, - { - "type": "STRING", - "value": "?" - }, - { - "type": "FIELD", - "name": "consequence", - "content": { - "type": "SYMBOL", - "name": "_arithmetic_expression" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "alternative", - "content": { - "type": "SYMBOL", - "name": "_arithmetic_expression" - } - } - ] - } - }, - "_arithmetic_unary_expression": { - "type": "CHOICE", - "members": [ - { - "type": "PREC", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" - } - ] - } - } - }, - { - "type": "SYMBOL", - "name": "_arithmetic_expression" - } - ] - } - }, - { - "type": "PREC_RIGHT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "SYMBOL", - "name": "_arithmetic_expression" - } - ] - } - } - ] - }, - "_arithmetic_postfix_expression": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_arithmetic_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" - } - ] - } - ] - }, - "_arithmetic_parenthesized_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_arithmetic_expression" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "concatenation": { - "type": "PREC", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_primary_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_special_character" - }, - "named": true, - "value": "word" - } - ] - }, - { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_concat" - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "`\\s*`" - }, - "named": false, - "value": "``" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_primary_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_special_character" - }, - "named": true, - "value": "word" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_comment_word" - }, - "named": true, - "value": "word" - } - ] - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_concat" - }, - { - "type": "STRING", - "value": "$" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "_special_character": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": -1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "STRING", - "value": "}" - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "]" - } - ] - } - } - }, - "string": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\"" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "$" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_string_content" - } - ] - }, - { - "type": "SYMBOL", - "name": "expansion" - }, - { - "type": "SYMBOL", - "name": "simple_expansion" - }, - { - "type": "SYMBOL", - "name": "command_substitution" - }, - { - "type": "SYMBOL", - "name": "arithmetic_expansion" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_concat" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "$" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "\"" - } - ] - }, - "_string_content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": -1, - "content": { - "type": "PATTERN", - "value": "([^\"`$\\\\]|\\\\(.|\\r?\\n))+" - } - } - }, - "translated_string": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$" - }, - { - "type": "SYMBOL", - "name": "string" - } - ] - }, - "array": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_literal" - } - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "raw_string": { - "type": "PATTERN", - "value": "'[^']*'" - }, - "ansi_c_string": { - "type": "PATTERN", - "value": "\\$'([^']|\\\\')*'" - }, - "number": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "-?(0x)?[0-9]+(#[0-9A-Za-z@_]+)?" - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "-?(0x)?[0-9]+#" - }, - { - "type": "SYMBOL", - "name": "expansion" - } - ] - } - ] - }, - "simple_expansion": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_variable_name" - }, - { - "type": "SYMBOL", - "name": "_multiline_variable_name" - }, - { - "type": "SYMBOL", - "name": "_special_variable_name" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "!" - }, - "named": true, - "value": "special_variable_name" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "#" - }, - "named": true, - "value": "special_variable_name" - } - ] - } - ] - }, - "string_expansion": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$" - }, - { - "type": "SYMBOL", - "name": "string" - } - ] - }, - "expansion": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "${" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "STRING", - "value": "!" - }, - { - "type": "STRING", - "value": "=" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expansion_body" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "_expansion_body": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "variable_name" - }, - { - "type": "SYMBOL", - "name": "_special_variable_name" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "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": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "SYMBOL", - "name": "array" - } - ] - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "STRING", - "value": "##" - }, - { - "type": "STRING", - "value": "%" - }, - { - "type": "STRING", - "value": "%%" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "regex" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": ")" - }, - "named": true, - "value": "regex" - }, - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "SYMBOL", - "name": "raw_string" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "/" - }, - { - "type": "STRING", - "value": "//" - }, - { - "type": "STRING", - "value": "/#" - }, - { - "type": "STRING", - "value": "/%" - } - ] - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_regex_no_slash" - }, - "named": true, - "value": "regex" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "/" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "/" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "STRING", - "value": ",," - }, - { - "type": "STRING", - "value": "^" - }, - { - "type": "STRING", - "value": "^^" - } - ] - }, - { - "type": "SYMBOL", - "name": "regex" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_variable_name" - }, - { - "type": "SYMBOL", - "name": "number" - }, - { - "type": "SYMBOL", - "name": "arithmetic_expansion" - }, - { - "type": "SYMBOL", - "name": "expansion" - }, - { - "type": "STRING", - "value": "\n" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_variable_name" - }, - { - "type": "SYMBOL", - "name": "number" - }, - { - "type": "SYMBOL", - "name": "arithmetic_expansion" - }, - { - "type": "STRING", - "value": "\n" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "@" - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "U" - }, - { - "type": "STRING", - "value": "u" - }, - { - "type": "STRING", - "value": "L" - }, - { - "type": "STRING", - "value": "Q" - }, - { - "type": "STRING", - "value": "E" - }, - { - "type": "STRING", - "value": "P" - }, - { - "type": "STRING", - "value": "A" - }, - { - "type": "STRING", - "value": "K" - }, - { - "type": "STRING", - "value": "a" - }, - { - "type": "STRING", - "value": "k" - } - ] - } - } - ] - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "subscript" - }, - { - "type": "SYMBOL", - "name": "_simple_variable_name" - }, - { - "type": "SYMBOL", - "name": "_special_variable_name" - }, - { - "type": "SYMBOL", - "name": "command_substitution" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "STRING", - "value": "," - } - } - }, - "named": false, - "value": "," - }, - { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "STRING", - "value": ",," - } - } - }, - "named": false, - "value": ",," - }, - { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "STRING", - "value": "^" - } - } - }, - "named": false, - "value": "^" - }, - { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "STRING", - "value": "^^" - } - } - }, - "named": false, - "value": "^^" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "regex" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "SYMBOL", - "name": "array" - }, - { - "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": ">" - } - ] - } - } - } - ] - } - ] - }, - "command_substitution": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$(" - }, - { - "type": "SYMBOL", - "name": "_statements" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$(" - }, - { - "type": "SYMBOL", - "name": "file_redirect" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "`" - }, - { - "type": "SYMBOL", - "name": "_statements" - }, - { - "type": "STRING", - "value": "`" - } - ] - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$`" - }, - { - "type": "SYMBOL", - "name": "_statements" - }, - { - "type": "STRING", - "value": "`" - } - ] - } - ] - }, - "process_substitution": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "<(" - }, - { - "type": "STRING", - "value": ">(" - } - ] - }, - { - "type": "SYMBOL", - "name": "_statements" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "comment": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": -10, - "content": { - "type": "PATTERN", - "value": "#.*" - } - } - }, - "_comment_word": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": -9, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^'\"<>{}\\[\\]()`$|&;\\\\\\s]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\" - }, - { - "type": "PATTERN", - "value": "[^\\s]" - } - ] - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^'\"<>{}\\[\\]()`$|&;\\\\\\s]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\" - }, - { - "type": "PATTERN", - "value": "[^\\s]" - } - ] - }, - { - "type": "STRING", - "value": "\\ " - } - ] - } - } - ] - } - } - }, - "_simple_variable_name": { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "\\w+" - }, - "named": true, - "value": "variable_name" - }, - "_multiline_variable_name": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": -1, - "content": { - "type": "PATTERN", - "value": "(\\w|\\\\\\r?\\n)+" - } - } - }, - "named": true, - "value": "variable_name" - }, - "_special_variable_name": { - "type": "ALIAS", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "@" - }, - { - "type": "STRING", - "value": "?" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "$" - }, - { - "type": "STRING", - "value": "0" - }, - { - "type": "STRING", - "value": "_" - } - ] - }, - "named": true, - "value": "special_variable_name" - }, - "word": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^#'\"<>{}\\[\\]()`$|&;\\\\\\s]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\" - }, - { - "type": "PATTERN", - "value": "[^\\s]" - } - ] - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^'\"<>{}\\[\\]()`$|&;\\\\\\s]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\" - }, - { - "type": "PATTERN", - "value": "[^\\s]" - } - ] - }, - { - "type": "STRING", - "value": "\\ " - } - ] - } - } - ] - } - }, - "test_operator": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "PATTERN", - "value": "[a-zA-Z]+" - } - ] - } - } - }, - "_c_terminator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "&" - } - ] - }, - "_terminator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "STRING", - "value": ";;" - }, - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "&" - } - ] - } - }, - "extras": [ - { - "type": "SYMBOL", - "name": "comment" - }, - { - "type": "PATTERN", - "value": "\\s" - }, - { - "type": "PATTERN", - "value": "\\\\\\r?\\n" - }, - { - "type": "PATTERN", - "value": "\\\\( |\\t|\\v|\\f)" - } - ], - "conflicts": [ - [ - "_expression", - "command_name" - ], - [ - "command", - "variable_assignments" - ], - [ - "compound_statement" - ], - [ - "redirected_statement", - "command" - ], - [ - "redirected_statement", - "command_substitution" - ], - [ - "_expansion_body" - ] - ], - "precedences": [], - "externals": [ - { - "type": "SYMBOL", - "name": "heredoc_start" - }, - { - "type": "SYMBOL", - "name": "simple_heredoc_body" - }, - { - "type": "SYMBOL", - "name": "_heredoc_body_beginning" - }, - { - "type": "SYMBOL", - "name": "_heredoc_body_middle" - }, - { - "type": "SYMBOL", - "name": "heredoc_end" - }, - { - "type": "SYMBOL", - "name": "file_descriptor" - }, - { - "type": "SYMBOL", - "name": "_empty_value" - }, - { - "type": "SYMBOL", - "name": "_concat" - }, - { - "type": "SYMBOL", - "name": "variable_name" - }, - { - "type": "SYMBOL", - "name": "regex" - }, - { - "type": "SYMBOL", - "name": "_regex_no_slash" - }, - { - "type": "SYMBOL", - "name": "_regex_no_space" - }, - { - "type": "SYMBOL", - "name": "extglob_pattern" - }, - { - "type": "SYMBOL", - "name": "_bare_dollar" - }, - { - "type": "SYMBOL", - "name": "_brace_start" - }, - { - "type": "STRING", - "value": "}" - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "STRING", - "value": "<<" - }, - { - "type": "STRING", - "value": "<<-" - }, - { - "type": "STRING", - "value": "\n" - } - ], - "inline": [ - "_statement", - "_terminator", - "_literal", - "_statements2", - "_primary_expression", - "_simple_variable_name", - "_multiline_variable_name", - "_special_variable_name", - "_c_word", - "_statement_not_subshell" - ], - "supertypes": [ - "_statement", - "_expression", - "_primary_expression" - ] -} - diff --git a/vendored_parsers/tree-sitter-bash/src/node-types.json b/vendored_parsers/tree-sitter-bash/src/node-types.json deleted file mode 100644 index a67d1d8e3..000000000 --- a/vendored_parsers/tree-sitter-bash/src/node-types.json +++ /dev/null @@ -1,2743 +0,0 @@ -[ - { - "type": "_expression", - "named": true, - "subtypes": [ - { - "type": "_primary_expression", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "concatenation", - "named": true - }, - { - "type": "parenthesized_expression", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "unary_expression", - "named": true - }, - { - "type": "word", - "named": true - } - ] - }, - { - "type": "_primary_expression", - "named": true, - "subtypes": [ - { - "type": "ansi_c_string", - "named": true - }, - { - "type": "arithmetic_expansion", - "named": true - }, - { - "type": "brace_expression", - "named": true - }, - { - "type": "command_substitution", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "process_substitution", - "named": true - }, - { - "type": "raw_string", - "named": true - }, - { - "type": "simple_expansion", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "translated_string", - "named": true - }, - { - "type": "word", - "named": true - } - ] - }, - { - "type": "_statement", - "named": true, - "subtypes": [ - { - "type": "c_style_for_statement", - "named": true - }, - { - "type": "case_statement", - "named": true - }, - { - "type": "command", - "named": true - }, - { - "type": "compound_statement", - "named": true - }, - { - "type": "declaration_command", - "named": true - }, - { - "type": "for_statement", - "named": true - }, - { - "type": "function_definition", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "negated_command", - "named": true - }, - { - "type": "pipeline", - "named": true - }, - { - "type": "redirected_statement", - "named": true - }, - { - "type": "subshell", - "named": true - }, - { - "type": "test_command", - "named": true - }, - { - "type": "unset_command", - "named": true - }, - { - "type": "variable_assignment", - "named": true - }, - { - "type": "variable_assignments", - "named": true - }, - { - "type": "while_statement", - "named": true - } - ] - }, - { - "type": "arithmetic_expansion", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "binary_expression", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "parenthesized_expression", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "simple_expansion", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "ternary_expression", - "named": true - }, - { - "type": "test_operator", - "named": true - }, - { - "type": "unary_expression", - "named": true - }, - { - "type": "variable_name", - "named": true - } - ] - } - }, - { - "type": "array", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_primary_expression", - "named": true - }, - { - "type": "concatenation", - "named": true - } - ] - } - }, - { - "type": "binary_expression", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "simple_expansion", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "test_operator", - "named": true - }, - { - "type": "variable_name", - "named": true - } - ] - }, - "operator": { - "multiple": false, - "required": false, - "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 - }, - { - "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": "test_operator", - "named": true - }, - { - "type": "|", - "named": false - }, - { - "type": "|=", - "named": false - }, - { - "type": "||", - "named": false - } - ] - }, - "right": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "regex", - "named": true - }, - { - "type": "simple_expansion", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "test_operator", - "named": true - }, - { - "type": "variable_name", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "binary_expression", - "named": true - }, - { - "type": "command_substitution", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "parenthesized_expression", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "simple_expansion", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "unary_expression", - "named": true - }, - { - "type": "word", - "named": true - } - ] - } - }, - { - "type": "brace_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "number", - "named": true - } - ] - } - }, - { - "type": "c_style_for_statement", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "compound_statement", - "named": true - }, - { - "type": "do_group", - "named": true - } - ] - }, - "condition": { - "multiple": true, - "required": false, - "types": [ - { - "type": ",", - "named": false - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "command_substitution", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "parenthesized_expression", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "simple_expansion", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "unary_expression", - "named": true - }, - { - "type": "variable_assignment", - "named": true - }, - { - "type": "word", - "named": true - } - ] - }, - "initializer": { - "multiple": true, - "required": false, - "types": [ - { - "type": ",", - "named": false - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "command_substitution", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "parenthesized_expression", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "simple_expansion", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "unary_expression", - "named": true - }, - { - "type": "variable_assignment", - "named": true - }, - { - "type": "word", - "named": true - } - ] - }, - "update": { - "multiple": true, - "required": false, - "types": [ - { - "type": ",", - "named": false - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "command_substitution", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "parenthesized_expression", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "simple_expansion", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "unary_expression", - "named": true - }, - { - "type": "variable_assignment", - "named": true - }, - { - "type": "word", - "named": true - } - ] - } - } - }, - { - "type": "case_item", - "named": true, - "fields": { - "fallthrough": { - "multiple": false, - "required": false, - "types": [ - { - "type": ";&", - "named": false - }, - { - "type": ";;&", - "named": false - } - ] - }, - "termination": { - "multiple": false, - "required": false, - "types": [ - { - "type": ";;", - "named": false - } - ] - }, - "value": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_primary_expression", - "named": true - }, - { - "type": "concatenation", - "named": true - }, - { - "type": "extglob_pattern", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_statement", - "named": true - } - ] - } - }, - { - "type": "case_statement", - "named": true, - "fields": { - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_primary_expression", - "named": true - }, - { - "type": "concatenation", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "case_item", - "named": true - } - ] - } - }, - { - "type": "command", - "named": true, - "fields": { - "argument": { - "multiple": true, - "required": false, - "types": [ - { - "type": "$", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": "=~", - "named": false - }, - { - "type": "_primary_expression", - "named": true - }, - { - "type": "concatenation", - "named": true - }, - { - "type": "regex", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "command_name", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "file_redirect", - "named": true - }, - { - "type": "variable_assignment", - "named": true - } - ] - } - }, - { - "type": "command_name", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_primary_expression", - "named": true - }, - { - "type": "concatenation", - "named": true - } - ] - } - }, - { - "type": "command_substitution", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "file_redirect", - "named": true - } - ] - } - }, - { - "type": "compound_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_statement", - "named": true - } - ] - } - }, - { - "type": "concatenation", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_primary_expression", - "named": true - } - ] - } - }, - { - "type": "declaration_command", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_primary_expression", - "named": true - }, - { - "type": "concatenation", - "named": true - }, - { - "type": "variable_assignment", - "named": true - }, - { - "type": "variable_name", - "named": true - } - ] - } - }, - { - "type": "do_group", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_statement", - "named": true - } - ] - } - }, - { - "type": "elif_clause", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_statement", - "named": true - } - ] - } - }, - { - "type": "else_clause", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_statement", - "named": true - } - ] - } - }, - { - "type": "expansion", - "named": true, - "fields": { - "operator": { - "multiple": false, - "required": false, - "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": "A", - "named": false - }, - { - "type": "E", - "named": false - }, - { - "type": "K", - "named": false - }, - { - "type": "L", - "named": false - }, - { - "type": "P", - "named": false - }, - { - "type": "Q", - "named": false - }, - { - "type": "U", - "named": false - }, - { - "type": "a", - "named": false - }, - { - "type": "k", - "named": false - }, - { - "type": "u", - "named": false - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_primary_expression", - "named": true - }, - { - "type": "array", - "named": true - }, - { - "type": "concatenation", - "named": true - }, - { - "type": "regex", - "named": true - }, - { - "type": "special_variable_name", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "variable_name", - "named": true - } - ] - } - }, - { - "type": "file_redirect", - "named": true, - "fields": { - "descriptor": { - "multiple": false, - "required": false, - "types": [ - { - "type": "file_descriptor", - "named": true - } - ] - }, - "destination": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_primary_expression", - "named": true - }, - { - "type": "concatenation", - "named": true - } - ] - } - } - }, - { - "type": "for_statement", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "do_group", - "named": true - } - ] - }, - "value": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_primary_expression", - "named": true - }, - { - "type": "concatenation", - "named": true - } - ] - }, - "variable": { - "multiple": false, - "required": true, - "types": [ - { - "type": "variable_name", - "named": true - } - ] - } - } - }, - { - "type": "function_definition", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "compound_statement", - "named": true - }, - { - "type": "subshell", - "named": true - }, - { - "type": "test_command", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "word", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "file_redirect", - "named": true - } - ] - } - }, - { - "type": "heredoc_body", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "command_substitution", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "simple_expansion", - "named": true - } - ] - } - }, - { - "type": "heredoc_redirect", - "named": true, - "fields": { - "descriptor": { - "multiple": false, - "required": false, - "types": [ - { - "type": "file_descriptor", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "file_redirect", - "named": true - }, - { - "type": "heredoc_body", - "named": true - }, - { - "type": "heredoc_end", - "named": true - }, - { - "type": "heredoc_start", - "named": true - }, - { - "type": "pipeline", - "named": true - }, - { - "type": "simple_heredoc_body", - "named": true - } - ] - } - }, - { - "type": "herestring_redirect", - "named": true, - "fields": { - "descriptor": { - "multiple": false, - "required": false, - "types": [ - { - "type": "file_descriptor", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_primary_expression", - "named": true - }, - { - "type": "concatenation", - "named": true - } - ] - } - }, - { - "type": "if_statement", - "named": true, - "fields": { - "condition": { - "multiple": true, - "required": true, - "types": [ - { - "type": "\n", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": ";", - "named": false - }, - { - "type": ";;", - "named": false - }, - { - "type": "c_style_for_statement", - "named": true - }, - { - "type": "case_statement", - "named": true - }, - { - "type": "command", - "named": true - }, - { - "type": "compound_statement", - "named": true - }, - { - "type": "declaration_command", - "named": true - }, - { - "type": "for_statement", - "named": true - }, - { - "type": "function_definition", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "negated_command", - "named": true - }, - { - "type": "pipeline", - "named": true - }, - { - "type": "redirected_statement", - "named": true - }, - { - "type": "test_command", - "named": true - }, - { - "type": "unset_command", - "named": true - }, - { - "type": "variable_assignment", - "named": true - }, - { - "type": "variable_assignments", - "named": true - }, - { - "type": "while_statement", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "elif_clause", - "named": true - }, - { - "type": "else_clause", - "named": true - } - ] - } - }, - { - "type": "list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_statement", - "named": true - } - ] - } - }, - { - "type": "negated_command", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "command", - "named": true - }, - { - "type": "subshell", - "named": true - }, - { - "type": "test_command", - "named": true - }, - { - "type": "variable_assignment", - "named": true - } - ] - } - }, - { - "type": "number", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "expansion", - "named": true - } - ] - } - }, - { - "type": "parenthesized_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "command_substitution", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "simple_expansion", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "test_operator", - "named": true - }, - { - "type": "variable_assignment", - "named": true - }, - { - "type": "variable_name", - "named": true - } - ] - } - }, - { - "type": "pipeline", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_statement", - "named": true - } - ] - } - }, - { - "type": "postfix_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "command_substitution", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "simple_expansion", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "test_operator", - "named": true - }, - { - "type": "variable_name", - "named": true - } - ] - } - }, - { - "type": "process_substitution", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_statement", - "named": true - } - ] - } - }, - { - "type": "program", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_statement", - "named": true - } - ] - } - }, - { - "type": "redirected_statement", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_statement", - "named": true - } - ] - }, - "redirect": { - "multiple": true, - "required": false, - "types": [ - { - "type": "file_redirect", - "named": true - }, - { - "type": "heredoc_redirect", - "named": true - }, - { - "type": "herestring_redirect", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "file_redirect", - "named": true - } - ] - } - }, - { - "type": "simple_expansion", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "special_variable_name", - "named": true - }, - { - "type": "variable_name", - "named": true - } - ] - } - }, - { - "type": "string", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "arithmetic_expansion", - "named": true - }, - { - "type": "command_substitution", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "simple_expansion", - "named": true - } - ] - } - }, - { - "type": "subscript", - "named": true, - "fields": { - "index": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_primary_expression", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "concatenation", - "named": true - }, - { - "type": "parenthesized_expression", - "named": true - }, - { - "type": "unary_expression", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "variable_name", - "named": true - } - ] - } - } - }, - { - "type": "subshell", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_statement", - "named": true - } - ] - } - }, - { - "type": "ternary_expression", - "named": true, - "fields": { - "alternative": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "simple_expansion", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "test_operator", - "named": true - }, - { - "type": "variable_name", - "named": true - } - ] - }, - "condition": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "simple_expansion", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "test_operator", - "named": true - }, - { - "type": "variable_name", - "named": true - } - ] - }, - "consequence": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "simple_expansion", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "test_operator", - "named": true - }, - { - "type": "variable_name", - "named": true - } - ] - } - } - }, - { - "type": "test_command", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "redirected_statement", - "named": true - } - ] - } - }, - { - "type": "translated_string", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "string", - "named": true - } - ] - } - }, - { - "type": "unary_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "command_substitution", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "simple_expansion", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "subscript", - "named": true - }, - { - "type": "test_operator", - "named": true - }, - { - "type": "variable_name", - "named": true - } - ] - } - }, - { - "type": "unset_command", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_primary_expression", - "named": true - }, - { - "type": "concatenation", - "named": true - }, - { - "type": "variable_name", - "named": true - } - ] - } - }, - { - "type": "variable_assignment", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "subscript", - "named": true - }, - { - "type": "variable_name", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_primary_expression", - "named": true - }, - { - "type": "array", - "named": true - }, - { - "type": "concatenation", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "binary_expression", - "named": true - }, - { - "type": "command_substitution", - "named": true - }, - { - "type": "expansion", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "parenthesized_expression", - "named": true - }, - { - "type": "postfix_expression", - "named": true - }, - { - "type": "simple_expansion", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "unary_expression", - "named": true - }, - { - "type": "variable_assignment", - "named": true - }, - { - "type": "variable_name", - "named": true - }, - { - "type": "word", - "named": true - } - ] - } - }, - { - "type": "variable_assignments", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "variable_assignment", - "named": true - } - ] - } - }, - { - "type": "while_statement", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "do_group", - "named": true - } - ] - }, - "condition": { - "multiple": true, - "required": true, - "types": [ - { - "type": "\n", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": ";", - "named": false - }, - { - "type": ";;", - "named": false - }, - { - "type": "c_style_for_statement", - "named": true - }, - { - "type": "case_statement", - "named": true - }, - { - "type": "command", - "named": true - }, - { - "type": "compound_statement", - "named": true - }, - { - "type": "declaration_command", - "named": true - }, - { - "type": "for_statement", - "named": true - }, - { - "type": "function_definition", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "negated_command", - "named": true - }, - { - "type": "pipeline", - "named": true - }, - { - "type": "redirected_statement", - "named": true - }, - { - "type": "test_command", - "named": true - }, - { - "type": "unset_command", - "named": true - }, - { - "type": "variable_assignment", - "named": true - }, - { - "type": "variable_assignments", - "named": true - }, - { - "type": "while_statement", - "named": true - } - ] - } - } - }, - { - "type": "word", - "named": true, - "fields": {} - }, - { - "type": "\n", - "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": ":-", - "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": "A", - "named": false - }, - { - "type": "E", - "named": false - }, - { - "type": "K", - "named": false - }, - { - "type": "L", - "named": false - }, - { - "type": "P", - "named": false - }, - { - "type": "Q", - "named": false - }, - { - "type": "U", - "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": "a", - "named": false - }, - { - "type": "ansi_c_string", - "named": true - }, - { - "type": "case", - "named": false - }, - { - "type": "comment", - "named": true - }, - { - "type": "declare", - "named": false - }, - { - "type": "do", - "named": false - }, - { - "type": "done", - "named": false - }, - { - "type": "elif", - "named": false - }, - { - "type": "else", - "named": false - }, - { - "type": "esac", - "named": false - }, - { - "type": "export", - "named": false - }, - { - "type": "extglob_pattern", - "named": true - }, - { - "type": "fi", - "named": false - }, - { - "type": "file_descriptor", - "named": true - }, - { - "type": "for", - "named": false - }, - { - "type": "function", - "named": false - }, - { - "type": "heredoc_end", - "named": true - }, - { - "type": "heredoc_start", - "named": true - }, - { - "type": "if", - "named": false - }, - { - "type": "in", - "named": false - }, - { - "type": "k", - "named": false - }, - { - "type": "local", - "named": false - }, - { - "type": "raw_string", - "named": true - }, - { - "type": "readonly", - "named": false - }, - { - "type": "regex", - "named": true - }, - { - "type": "select", - "named": false - }, - { - "type": "simple_heredoc_body", - "named": true - }, - { - "type": "special_variable_name", - "named": true - }, - { - "type": "test_operator", - "named": true - }, - { - "type": "then", - "named": false - }, - { - "type": "typeset", - "named": false - }, - { - "type": "u", - "named": false - }, - { - "type": "unset", - "named": false - }, - { - "type": "unsetenv", - "named": false - }, - { - "type": "until", - "named": false - }, - { - "type": "variable_name", - "named": true - }, - { - "type": "while", - "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/vendored_parsers/tree-sitter-bash/src/parser.c b/vendored_parsers/tree-sitter-bash/src/parser.c deleted file mode 100644 index 31f5d08da..000000000 --- a/vendored_parsers/tree-sitter-bash/src/parser.c +++ /dev/null @@ -1,224290 +0,0 @@ -#include <tree_sitter/parser.h> - -#if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wmissing-field-initializers" -#endif - -#ifdef _MSC_VER -#pragma optimize("", off) -#elif defined(__clang__) -#pragma clang optimize off -#elif defined(__GNUC__) -#pragma GCC optimize ("O0") -#endif - -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 5041 -#define LARGE_STATE_COUNT 433 -#define SYMBOL_COUNT 248 -#define ALIAS_COUNT 0 -#define TOKEN_COUNT 156 -#define EXTERNAL_TOKEN_COUNT 20 -#define FIELD_COUNT 19 -#define MAX_ALIAS_SEQUENCE_LENGTH 8 -#define PRODUCTION_ID_COUNT 115 - -enum { - sym_word = 1, - anon_sym_for = 2, - anon_sym_select = 3, - anon_sym_in = 4, - anon_sym_LPAREN_LPAREN = 5, - anon_sym_RPAREN_RPAREN = 6, - anon_sym_SEMI = 7, - anon_sym_COMMA = 8, - anon_sym_EQ = 9, - anon_sym_PLUS_PLUS = 10, - anon_sym_DASH_DASH = 11, - anon_sym_PLUS_EQ = 12, - anon_sym_DASH_EQ = 13, - anon_sym_STAR_EQ = 14, - anon_sym_SLASH_EQ = 15, - anon_sym_PERCENT_EQ = 16, - anon_sym_STAR_STAR_EQ = 17, - anon_sym_LT_LT_EQ = 18, - anon_sym_GT_GT_EQ = 19, - anon_sym_AMP_EQ = 20, - anon_sym_CARET_EQ = 21, - anon_sym_PIPE_EQ = 22, - anon_sym_EQ_EQ = 23, - anon_sym_BANG_EQ = 24, - anon_sym_LT_EQ = 25, - anon_sym_GT_EQ = 26, - anon_sym_AMP_AMP = 27, - anon_sym_PIPE_PIPE = 28, - anon_sym_LT_LT = 29, - anon_sym_GT_GT = 30, - anon_sym_PLUS = 31, - anon_sym_DASH = 32, - anon_sym_STAR = 33, - anon_sym_SLASH = 34, - anon_sym_PERCENT = 35, - anon_sym_STAR_STAR = 36, - anon_sym_LT = 37, - anon_sym_GT = 38, - anon_sym_LPAREN = 39, - anon_sym_RPAREN = 40, - aux_sym__c_word_token1 = 41, - anon_sym_while = 42, - anon_sym_until = 43, - anon_sym_do = 44, - anon_sym_done = 45, - anon_sym_if = 46, - anon_sym_then = 47, - anon_sym_fi = 48, - anon_sym_elif = 49, - anon_sym_else = 50, - anon_sym_case = 51, - anon_sym_esac = 52, - anon_sym_PIPE = 53, - anon_sym_SEMI_SEMI = 54, - anon_sym_SEMI_AMP = 55, - anon_sym_SEMI_SEMI_AMP = 56, - anon_sym_function = 57, - anon_sym_LBRACE = 58, - anon_sym_RBRACE = 59, - anon_sym_PIPE_AMP = 60, - anon_sym_BANG = 61, - anon_sym_LBRACK = 62, - anon_sym_RBRACK = 63, - anon_sym_LBRACK_LBRACK = 64, - anon_sym_RBRACK_RBRACK = 65, - anon_sym_declare = 66, - anon_sym_typeset = 67, - anon_sym_export = 68, - anon_sym_readonly = 69, - anon_sym_local = 70, - anon_sym_unset = 71, - anon_sym_unsetenv = 72, - anon_sym_EQ_TILDE = 73, - anon_sym_AMP_GT = 74, - anon_sym_AMP_GT_GT = 75, - anon_sym_LT_AMP = 76, - anon_sym_GT_AMP = 77, - anon_sym_GT_PIPE = 78, - anon_sym_LT_LT_DASH = 79, - anon_sym_LF = 80, - anon_sym_LT_LT_LT = 81, - anon_sym_AMP = 82, - anon_sym_CARET = 83, - anon_sym_QMARK = 84, - anon_sym_COLON = 85, - aux_sym_unary_expression_token1 = 86, - anon_sym_DOLLAR_LPAREN_LPAREN = 87, - aux_sym_brace_expression_token1 = 88, - anon_sym_DOT_DOT = 89, - anon_sym_RBRACE2 = 90, - aux_sym_concatenation_token1 = 91, - anon_sym_DOLLAR = 92, - sym__special_character = 93, - anon_sym_DQUOTE = 94, - sym__string_content = 95, - sym_raw_string = 96, - sym_ansi_c_string = 97, - aux_sym_number_token1 = 98, - aux_sym_number_token2 = 99, - anon_sym_POUND = 100, - anon_sym_DOLLAR_LBRACE = 101, - anon_sym_RBRACE3 = 102, - anon_sym_COLON_EQ = 103, - anon_sym_COLON_DASH = 104, - anon_sym_COLON_PLUS = 105, - anon_sym_COLON_QMARK = 106, - anon_sym_POUND_POUND = 107, - anon_sym_PERCENT_PERCENT = 108, - anon_sym_SLASH_SLASH = 109, - anon_sym_SLASH_POUND = 110, - anon_sym_SLASH_PERCENT = 111, - anon_sym_COMMA_COMMA = 112, - anon_sym_CARET_CARET = 113, - anon_sym_AT = 114, - anon_sym_U = 115, - anon_sym_u = 116, - anon_sym_L = 117, - anon_sym_Q = 118, - anon_sym_E = 119, - anon_sym_P = 120, - anon_sym_A = 121, - anon_sym_K = 122, - anon_sym_a = 123, - anon_sym_k = 124, - anon_sym_COMMA2 = 125, - anon_sym_COMMA_COMMA2 = 126, - anon_sym_CARET2 = 127, - anon_sym_CARET_CARET2 = 128, - anon_sym_DOLLAR_LPAREN = 129, - anon_sym_BQUOTE = 130, - anon_sym_DOLLAR_BQUOTE = 131, - anon_sym_LT_LPAREN = 132, - anon_sym_GT_LPAREN = 133, - sym_comment = 134, - sym__comment_word = 135, - aux_sym__simple_variable_name_token1 = 136, - aux_sym__multiline_variable_name_token1 = 137, - anon_sym_0 = 138, - anon_sym__ = 139, - sym_test_operator = 140, - sym_heredoc_start = 141, - sym_simple_heredoc_body = 142, - sym__heredoc_body_beginning = 143, - sym__heredoc_body_middle = 144, - sym_heredoc_end = 145, - sym_file_descriptor = 146, - sym__empty_value = 147, - sym__concat = 148, - sym_variable_name = 149, - sym_regex = 150, - sym__regex_no_slash = 151, - sym__regex_no_space = 152, - sym_extglob_pattern = 153, - sym__bare_dollar = 154, - sym__brace_start = 155, - sym_program = 156, - sym__statements = 157, - aux_sym__statements2 = 158, - sym__terminated_statement = 159, - sym_redirected_statement = 160, - sym_for_statement = 161, - sym_c_style_for_statement = 162, - sym__for_body = 163, - sym__c_expression = 164, - sym__c_expression_not_assignment = 165, - sym__c_variable_assignment = 166, - sym__c_unary_expression = 167, - sym__c_binary_expression = 168, - sym__c_postfix_expression = 169, - sym__c_parenthesized_expression = 170, - sym_while_statement = 171, - sym_do_group = 172, - sym_if_statement = 173, - sym_elif_clause = 174, - sym_else_clause = 175, - sym_case_statement = 176, - sym_case_item = 177, - sym_last_case_item = 178, - sym_function_definition = 179, - sym_compound_statement = 180, - sym_subshell = 181, - sym_pipeline = 182, - sym_list = 183, - sym_negated_command = 184, - sym_test_command = 185, - sym_declaration_command = 186, - sym_unset_command = 187, - sym_command = 188, - sym_command_name = 189, - sym_variable_assignment = 190, - sym_variable_assignments = 191, - sym_subscript = 192, - sym_file_redirect = 193, - sym_heredoc_redirect = 194, - sym__heredoc_pipeline = 195, - sym__heredoc_body = 196, - sym_heredoc_body = 197, - sym__simple_heredoc_body = 198, - sym_herestring_redirect = 199, - sym__expression = 200, - sym_binary_expression = 201, - sym_ternary_expression = 202, - sym_unary_expression = 203, - sym_postfix_expression = 204, - sym_parenthesized_expression = 205, - sym_arithmetic_expansion = 206, - sym_brace_expression = 207, - sym__arithmetic_expression = 208, - sym__arithmetic_literal = 209, - sym__arithmetic_binary_expression = 210, - sym__arithmetic_ternary_expression = 211, - sym__arithmetic_unary_expression = 212, - sym__arithmetic_postfix_expression = 213, - sym__arithmetic_parenthesized_expression = 214, - sym_concatenation = 215, - sym_string = 216, - sym_translated_string = 217, - sym_array = 218, - sym_number = 219, - sym_simple_expansion = 220, - sym_expansion = 221, - sym__expansion_body = 222, - sym_command_substitution = 223, - sym_process_substitution = 224, - sym__c_terminator = 225, - aux_sym__statements_repeat1 = 226, - aux_sym_redirected_statement_repeat1 = 227, - aux_sym_redirected_statement_repeat2 = 228, - aux_sym_for_statement_repeat1 = 229, - aux_sym__for_body_repeat1 = 230, - aux_sym_while_statement_repeat1 = 231, - aux_sym_if_statement_repeat1 = 232, - aux_sym_case_statement_repeat1 = 233, - aux_sym_case_item_repeat1 = 234, - aux_sym_declaration_command_repeat1 = 235, - aux_sym_unset_command_repeat1 = 236, - aux_sym_command_repeat1 = 237, - aux_sym_command_repeat2 = 238, - aux_sym_variable_assignments_repeat1 = 239, - aux_sym_heredoc_body_repeat1 = 240, - aux_sym__literal_repeat1 = 241, - aux_sym_arithmetic_expansion_repeat1 = 242, - aux_sym_concatenation_repeat1 = 243, - aux_sym_string_repeat1 = 244, - aux_sym_expansion_repeat1 = 245, - aux_sym__expansion_body_repeat1 = 246, - aux_sym__expansion_body_repeat2 = 247, -}; - -static const char * const ts_symbol_names[] = { - [ts_builtin_sym_end] = "end", - [sym_word] = "word", - [anon_sym_for] = "for", - [anon_sym_select] = "select", - [anon_sym_in] = "in", - [anon_sym_LPAREN_LPAREN] = "((", - [anon_sym_RPAREN_RPAREN] = "))", - [anon_sym_SEMI] = ";", - [anon_sym_COMMA] = ",", - [anon_sym_EQ] = "=", - [anon_sym_PLUS_PLUS] = "++", - [anon_sym_DASH_DASH] = "--", - [anon_sym_PLUS_EQ] = "+=", - [anon_sym_DASH_EQ] = "-=", - [anon_sym_STAR_EQ] = "*=", - [anon_sym_SLASH_EQ] = "/=", - [anon_sym_PERCENT_EQ] = "%=", - [anon_sym_STAR_STAR_EQ] = "**=", - [anon_sym_LT_LT_EQ] = "<<=", - [anon_sym_GT_GT_EQ] = ">>=", - [anon_sym_AMP_EQ] = "&=", - [anon_sym_CARET_EQ] = "^=", - [anon_sym_PIPE_EQ] = "|=", - [anon_sym_EQ_EQ] = "==", - [anon_sym_BANG_EQ] = "!=", - [anon_sym_LT_EQ] = "<=", - [anon_sym_GT_EQ] = ">=", - [anon_sym_AMP_AMP] = "&&", - [anon_sym_PIPE_PIPE] = "||", - [anon_sym_LT_LT] = "<<", - [anon_sym_GT_GT] = ">>", - [anon_sym_PLUS] = "+", - [anon_sym_DASH] = "-", - [anon_sym_STAR] = "*", - [anon_sym_SLASH] = "/", - [anon_sym_PERCENT] = "%", - [anon_sym_STAR_STAR] = "**", - [anon_sym_LT] = "<", - [anon_sym_GT] = ">", - [anon_sym_LPAREN] = "(", - [anon_sym_RPAREN] = ")", - [aux_sym__c_word_token1] = "word", - [anon_sym_while] = "while", - [anon_sym_until] = "until", - [anon_sym_do] = "do", - [anon_sym_done] = "done", - [anon_sym_if] = "if", - [anon_sym_then] = "then", - [anon_sym_fi] = "fi", - [anon_sym_elif] = "elif", - [anon_sym_else] = "else", - [anon_sym_case] = "case", - [anon_sym_esac] = "esac", - [anon_sym_PIPE] = "|", - [anon_sym_SEMI_SEMI] = ";;", - [anon_sym_SEMI_AMP] = ";&", - [anon_sym_SEMI_SEMI_AMP] = ";;&", - [anon_sym_function] = "function", - [anon_sym_LBRACE] = "{", - [anon_sym_RBRACE] = "}", - [anon_sym_PIPE_AMP] = "|&", - [anon_sym_BANG] = "!", - [anon_sym_LBRACK] = "[", - [anon_sym_RBRACK] = "]", - [anon_sym_LBRACK_LBRACK] = "[[", - [anon_sym_RBRACK_RBRACK] = "]]", - [anon_sym_declare] = "declare", - [anon_sym_typeset] = "typeset", - [anon_sym_export] = "export", - [anon_sym_readonly] = "readonly", - [anon_sym_local] = "local", - [anon_sym_unset] = "unset", - [anon_sym_unsetenv] = "unsetenv", - [anon_sym_EQ_TILDE] = "=~", - [anon_sym_AMP_GT] = "&>", - [anon_sym_AMP_GT_GT] = "&>>", - [anon_sym_LT_AMP] = "<&", - [anon_sym_GT_AMP] = ">&", - [anon_sym_GT_PIPE] = ">|", - [anon_sym_LT_LT_DASH] = "<<-", - [anon_sym_LF] = "\n", - [anon_sym_LT_LT_LT] = "<<<", - [anon_sym_AMP] = "&", - [anon_sym_CARET] = "^", - [anon_sym_QMARK] = "\?", - [anon_sym_COLON] = ":", - [aux_sym_unary_expression_token1] = "unary_expression_token1", - [anon_sym_DOLLAR_LPAREN_LPAREN] = "$((", - [aux_sym_brace_expression_token1] = "number", - [anon_sym_DOT_DOT] = "..", - [anon_sym_RBRACE2] = "}", - [aux_sym_concatenation_token1] = "``", - [anon_sym_DOLLAR] = "$", - [sym__special_character] = "_special_character", - [anon_sym_DQUOTE] = "\"", - [sym__string_content] = "_string_content", - [sym_raw_string] = "raw_string", - [sym_ansi_c_string] = "ansi_c_string", - [aux_sym_number_token1] = "number_token1", - [aux_sym_number_token2] = "number_token2", - [anon_sym_POUND] = "#", - [anon_sym_DOLLAR_LBRACE] = "${", - [anon_sym_RBRACE3] = "}", - [anon_sym_COLON_EQ] = ":=", - [anon_sym_COLON_DASH] = ":-", - [anon_sym_COLON_PLUS] = ":+", - [anon_sym_COLON_QMARK] = ":\?", - [anon_sym_POUND_POUND] = "##", - [anon_sym_PERCENT_PERCENT] = "%%", - [anon_sym_SLASH_SLASH] = "//", - [anon_sym_SLASH_POUND] = "/#", - [anon_sym_SLASH_PERCENT] = "/%", - [anon_sym_COMMA_COMMA] = ",,", - [anon_sym_CARET_CARET] = "^^", - [anon_sym_AT] = "@", - [anon_sym_U] = "U", - [anon_sym_u] = "u", - [anon_sym_L] = "L", - [anon_sym_Q] = "Q", - [anon_sym_E] = "E", - [anon_sym_P] = "P", - [anon_sym_A] = "A", - [anon_sym_K] = "K", - [anon_sym_a] = "a", - [anon_sym_k] = "k", - [anon_sym_COMMA2] = ",", - [anon_sym_COMMA_COMMA2] = ",,", - [anon_sym_CARET2] = "^", - [anon_sym_CARET_CARET2] = "^^", - [anon_sym_DOLLAR_LPAREN] = "$(", - [anon_sym_BQUOTE] = "`", - [anon_sym_DOLLAR_BQUOTE] = "$`", - [anon_sym_LT_LPAREN] = "<(", - [anon_sym_GT_LPAREN] = ">(", - [sym_comment] = "comment", - [sym__comment_word] = "word", - [aux_sym__simple_variable_name_token1] = "variable_name", - [aux_sym__multiline_variable_name_token1] = "variable_name", - [anon_sym_0] = "special_variable_name", - [anon_sym__] = "special_variable_name", - [sym_test_operator] = "test_operator", - [sym_heredoc_start] = "heredoc_start", - [sym_simple_heredoc_body] = "simple_heredoc_body", - [sym__heredoc_body_beginning] = "_heredoc_body_beginning", - [sym__heredoc_body_middle] = "_heredoc_body_middle", - [sym_heredoc_end] = "heredoc_end", - [sym_file_descriptor] = "file_descriptor", - [sym__empty_value] = "_empty_value", - [sym__concat] = "_concat", - [sym_variable_name] = "variable_name", - [sym_regex] = "regex", - [sym__regex_no_slash] = "regex", - [sym__regex_no_space] = "regex", - [sym_extglob_pattern] = "extglob_pattern", - [sym__bare_dollar] = "$", - [sym__brace_start] = "{", - [sym_program] = "program", - [sym__statements] = "_statements", - [aux_sym__statements2] = "_statements2", - [sym__terminated_statement] = "_terminated_statement", - [sym_redirected_statement] = "redirected_statement", - [sym_for_statement] = "for_statement", - [sym_c_style_for_statement] = "c_style_for_statement", - [sym__for_body] = "_for_body", - [sym__c_expression] = "_c_expression", - [sym__c_expression_not_assignment] = "_c_expression_not_assignment", - [sym__c_variable_assignment] = "variable_assignment", - [sym__c_unary_expression] = "unary_expression", - [sym__c_binary_expression] = "binary_expression", - [sym__c_postfix_expression] = "postfix_expression", - [sym__c_parenthesized_expression] = "parenthesized_expression", - [sym_while_statement] = "while_statement", - [sym_do_group] = "do_group", - [sym_if_statement] = "if_statement", - [sym_elif_clause] = "elif_clause", - [sym_else_clause] = "else_clause", - [sym_case_statement] = "case_statement", - [sym_case_item] = "case_item", - [sym_last_case_item] = "case_item", - [sym_function_definition] = "function_definition", - [sym_compound_statement] = "compound_statement", - [sym_subshell] = "subshell", - [sym_pipeline] = "pipeline", - [sym_list] = "list", - [sym_negated_command] = "negated_command", - [sym_test_command] = "test_command", - [sym_declaration_command] = "declaration_command", - [sym_unset_command] = "unset_command", - [sym_command] = "command", - [sym_command_name] = "command_name", - [sym_variable_assignment] = "variable_assignment", - [sym_variable_assignments] = "variable_assignments", - [sym_subscript] = "subscript", - [sym_file_redirect] = "file_redirect", - [sym_heredoc_redirect] = "heredoc_redirect", - [sym__heredoc_pipeline] = "pipeline", - [sym__heredoc_body] = "_heredoc_body", - [sym_heredoc_body] = "heredoc_body", - [sym__simple_heredoc_body] = "_simple_heredoc_body", - [sym_herestring_redirect] = "herestring_redirect", - [sym__expression] = "_expression", - [sym_binary_expression] = "binary_expression", - [sym_ternary_expression] = "ternary_expression", - [sym_unary_expression] = "unary_expression", - [sym_postfix_expression] = "postfix_expression", - [sym_parenthesized_expression] = "parenthesized_expression", - [sym_arithmetic_expansion] = "arithmetic_expansion", - [sym_brace_expression] = "brace_expression", - [sym__arithmetic_expression] = "_arithmetic_expression", - [sym__arithmetic_literal] = "_arithmetic_literal", - [sym__arithmetic_binary_expression] = "binary_expression", - [sym__arithmetic_ternary_expression] = "ternary_expression", - [sym__arithmetic_unary_expression] = "unary_expression", - [sym__arithmetic_postfix_expression] = "postfix_expression", - [sym__arithmetic_parenthesized_expression] = "parenthesized_expression", - [sym_concatenation] = "concatenation", - [sym_string] = "string", - [sym_translated_string] = "translated_string", - [sym_array] = "array", - [sym_number] = "number", - [sym_simple_expansion] = "simple_expansion", - [sym_expansion] = "expansion", - [sym__expansion_body] = "_expansion_body", - [sym_command_substitution] = "command_substitution", - [sym_process_substitution] = "process_substitution", - [sym__c_terminator] = "_c_terminator", - [aux_sym__statements_repeat1] = "_statements_repeat1", - [aux_sym_redirected_statement_repeat1] = "redirected_statement_repeat1", - [aux_sym_redirected_statement_repeat2] = "redirected_statement_repeat2", - [aux_sym_for_statement_repeat1] = "for_statement_repeat1", - [aux_sym__for_body_repeat1] = "_for_body_repeat1", - [aux_sym_while_statement_repeat1] = "while_statement_repeat1", - [aux_sym_if_statement_repeat1] = "if_statement_repeat1", - [aux_sym_case_statement_repeat1] = "case_statement_repeat1", - [aux_sym_case_item_repeat1] = "case_item_repeat1", - [aux_sym_declaration_command_repeat1] = "declaration_command_repeat1", - [aux_sym_unset_command_repeat1] = "unset_command_repeat1", - [aux_sym_command_repeat1] = "command_repeat1", - [aux_sym_command_repeat2] = "command_repeat2", - [aux_sym_variable_assignments_repeat1] = "variable_assignments_repeat1", - [aux_sym_heredoc_body_repeat1] = "heredoc_body_repeat1", - [aux_sym__literal_repeat1] = "_literal_repeat1", - [aux_sym_arithmetic_expansion_repeat1] = "arithmetic_expansion_repeat1", - [aux_sym_concatenation_repeat1] = "concatenation_repeat1", - [aux_sym_string_repeat1] = "string_repeat1", - [aux_sym_expansion_repeat1] = "expansion_repeat1", - [aux_sym__expansion_body_repeat1] = "_expansion_body_repeat1", - [aux_sym__expansion_body_repeat2] = "_expansion_body_repeat2", -}; - -static const TSSymbol ts_symbol_map[] = { - [ts_builtin_sym_end] = ts_builtin_sym_end, - [sym_word] = sym_word, - [anon_sym_for] = anon_sym_for, - [anon_sym_select] = anon_sym_select, - [anon_sym_in] = anon_sym_in, - [anon_sym_LPAREN_LPAREN] = anon_sym_LPAREN_LPAREN, - [anon_sym_RPAREN_RPAREN] = anon_sym_RPAREN_RPAREN, - [anon_sym_SEMI] = anon_sym_SEMI, - [anon_sym_COMMA] = anon_sym_COMMA, - [anon_sym_EQ] = anon_sym_EQ, - [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, - [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, - [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_PERCENT_EQ] = anon_sym_PERCENT_EQ, - [anon_sym_STAR_STAR_EQ] = anon_sym_STAR_STAR_EQ, - [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, - [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_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_EQ_EQ] = anon_sym_EQ_EQ, - [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, - [anon_sym_LT_EQ] = anon_sym_LT_EQ, - [anon_sym_GT_EQ] = anon_sym_GT_EQ, - [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, - [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, - [anon_sym_LT_LT] = anon_sym_LT_LT, - [anon_sym_GT_GT] = anon_sym_GT_GT, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_DASH] = anon_sym_DASH, - [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_SLASH] = anon_sym_SLASH, - [anon_sym_PERCENT] = anon_sym_PERCENT, - [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_RPAREN] = anon_sym_RPAREN, - [aux_sym__c_word_token1] = sym_word, - [anon_sym_while] = anon_sym_while, - [anon_sym_until] = anon_sym_until, - [anon_sym_do] = anon_sym_do, - [anon_sym_done] = anon_sym_done, - [anon_sym_if] = anon_sym_if, - [anon_sym_then] = anon_sym_then, - [anon_sym_fi] = anon_sym_fi, - [anon_sym_elif] = anon_sym_elif, - [anon_sym_else] = anon_sym_else, - [anon_sym_case] = anon_sym_case, - [anon_sym_esac] = anon_sym_esac, - [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_SEMI_SEMI] = anon_sym_SEMI_SEMI, - [anon_sym_SEMI_AMP] = anon_sym_SEMI_AMP, - [anon_sym_SEMI_SEMI_AMP] = anon_sym_SEMI_SEMI_AMP, - [anon_sym_function] = anon_sym_function, - [anon_sym_LBRACE] = anon_sym_LBRACE, - [anon_sym_RBRACE] = anon_sym_RBRACE, - [anon_sym_PIPE_AMP] = anon_sym_PIPE_AMP, - [anon_sym_BANG] = anon_sym_BANG, - [anon_sym_LBRACK] = anon_sym_LBRACK, - [anon_sym_RBRACK] = anon_sym_RBRACK, - [anon_sym_LBRACK_LBRACK] = anon_sym_LBRACK_LBRACK, - [anon_sym_RBRACK_RBRACK] = anon_sym_RBRACK_RBRACK, - [anon_sym_declare] = anon_sym_declare, - [anon_sym_typeset] = anon_sym_typeset, - [anon_sym_export] = anon_sym_export, - [anon_sym_readonly] = anon_sym_readonly, - [anon_sym_local] = anon_sym_local, - [anon_sym_unset] = anon_sym_unset, - [anon_sym_unsetenv] = anon_sym_unsetenv, - [anon_sym_EQ_TILDE] = anon_sym_EQ_TILDE, - [anon_sym_AMP_GT] = anon_sym_AMP_GT, - [anon_sym_AMP_GT_GT] = anon_sym_AMP_GT_GT, - [anon_sym_LT_AMP] = anon_sym_LT_AMP, - [anon_sym_GT_AMP] = anon_sym_GT_AMP, - [anon_sym_GT_PIPE] = anon_sym_GT_PIPE, - [anon_sym_LT_LT_DASH] = anon_sym_LT_LT_DASH, - [anon_sym_LF] = anon_sym_LF, - [anon_sym_LT_LT_LT] = anon_sym_LT_LT_LT, - [anon_sym_AMP] = anon_sym_AMP, - [anon_sym_CARET] = anon_sym_CARET, - [anon_sym_QMARK] = anon_sym_QMARK, - [anon_sym_COLON] = anon_sym_COLON, - [aux_sym_unary_expression_token1] = aux_sym_unary_expression_token1, - [anon_sym_DOLLAR_LPAREN_LPAREN] = anon_sym_DOLLAR_LPAREN_LPAREN, - [aux_sym_brace_expression_token1] = sym_number, - [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, - [anon_sym_RBRACE2] = anon_sym_RBRACE, - [aux_sym_concatenation_token1] = aux_sym_concatenation_token1, - [anon_sym_DOLLAR] = anon_sym_DOLLAR, - [sym__special_character] = sym__special_character, - [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [sym__string_content] = sym__string_content, - [sym_raw_string] = sym_raw_string, - [sym_ansi_c_string] = sym_ansi_c_string, - [aux_sym_number_token1] = aux_sym_number_token1, - [aux_sym_number_token2] = aux_sym_number_token2, - [anon_sym_POUND] = anon_sym_POUND, - [anon_sym_DOLLAR_LBRACE] = anon_sym_DOLLAR_LBRACE, - [anon_sym_RBRACE3] = anon_sym_RBRACE, - [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, - [anon_sym_COLON_DASH] = anon_sym_COLON_DASH, - [anon_sym_COLON_PLUS] = anon_sym_COLON_PLUS, - [anon_sym_COLON_QMARK] = anon_sym_COLON_QMARK, - [anon_sym_POUND_POUND] = anon_sym_POUND_POUND, - [anon_sym_PERCENT_PERCENT] = anon_sym_PERCENT_PERCENT, - [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, - [anon_sym_SLASH_POUND] = anon_sym_SLASH_POUND, - [anon_sym_SLASH_PERCENT] = anon_sym_SLASH_PERCENT, - [anon_sym_COMMA_COMMA] = anon_sym_COMMA_COMMA, - [anon_sym_CARET_CARET] = anon_sym_CARET_CARET, - [anon_sym_AT] = anon_sym_AT, - [anon_sym_U] = anon_sym_U, - [anon_sym_u] = anon_sym_u, - [anon_sym_L] = anon_sym_L, - [anon_sym_Q] = anon_sym_Q, - [anon_sym_E] = anon_sym_E, - [anon_sym_P] = anon_sym_P, - [anon_sym_A] = anon_sym_A, - [anon_sym_K] = anon_sym_K, - [anon_sym_a] = anon_sym_a, - [anon_sym_k] = anon_sym_k, - [anon_sym_COMMA2] = anon_sym_COMMA, - [anon_sym_COMMA_COMMA2] = anon_sym_COMMA_COMMA, - [anon_sym_CARET2] = anon_sym_CARET, - [anon_sym_CARET_CARET2] = anon_sym_CARET_CARET, - [anon_sym_DOLLAR_LPAREN] = anon_sym_DOLLAR_LPAREN, - [anon_sym_BQUOTE] = anon_sym_BQUOTE, - [anon_sym_DOLLAR_BQUOTE] = anon_sym_DOLLAR_BQUOTE, - [anon_sym_LT_LPAREN] = anon_sym_LT_LPAREN, - [anon_sym_GT_LPAREN] = anon_sym_GT_LPAREN, - [sym_comment] = sym_comment, - [sym__comment_word] = sym_word, - [aux_sym__simple_variable_name_token1] = sym_variable_name, - [aux_sym__multiline_variable_name_token1] = sym_variable_name, - [anon_sym_0] = anon_sym_0, - [anon_sym__] = anon_sym_0, - [sym_test_operator] = sym_test_operator, - [sym_heredoc_start] = sym_heredoc_start, - [sym_simple_heredoc_body] = sym_simple_heredoc_body, - [sym__heredoc_body_beginning] = sym__heredoc_body_beginning, - [sym__heredoc_body_middle] = sym__heredoc_body_middle, - [sym_heredoc_end] = sym_heredoc_end, - [sym_file_descriptor] = sym_file_descriptor, - [sym__empty_value] = sym__empty_value, - [sym__concat] = sym__concat, - [sym_variable_name] = sym_variable_name, - [sym_regex] = sym_regex, - [sym__regex_no_slash] = sym_regex, - [sym__regex_no_space] = sym_regex, - [sym_extglob_pattern] = sym_extglob_pattern, - [sym__bare_dollar] = anon_sym_DOLLAR, - [sym__brace_start] = anon_sym_LBRACE, - [sym_program] = sym_program, - [sym__statements] = sym__statements, - [aux_sym__statements2] = aux_sym__statements2, - [sym__terminated_statement] = sym__terminated_statement, - [sym_redirected_statement] = sym_redirected_statement, - [sym_for_statement] = sym_for_statement, - [sym_c_style_for_statement] = sym_c_style_for_statement, - [sym__for_body] = sym__for_body, - [sym__c_expression] = sym__c_expression, - [sym__c_expression_not_assignment] = sym__c_expression_not_assignment, - [sym__c_variable_assignment] = sym_variable_assignment, - [sym__c_unary_expression] = sym_unary_expression, - [sym__c_binary_expression] = sym_binary_expression, - [sym__c_postfix_expression] = sym_postfix_expression, - [sym__c_parenthesized_expression] = sym_parenthesized_expression, - [sym_while_statement] = sym_while_statement, - [sym_do_group] = sym_do_group, - [sym_if_statement] = sym_if_statement, - [sym_elif_clause] = sym_elif_clause, - [sym_else_clause] = sym_else_clause, - [sym_case_statement] = sym_case_statement, - [sym_case_item] = sym_case_item, - [sym_last_case_item] = sym_case_item, - [sym_function_definition] = sym_function_definition, - [sym_compound_statement] = sym_compound_statement, - [sym_subshell] = sym_subshell, - [sym_pipeline] = sym_pipeline, - [sym_list] = sym_list, - [sym_negated_command] = sym_negated_command, - [sym_test_command] = sym_test_command, - [sym_declaration_command] = sym_declaration_command, - [sym_unset_command] = sym_unset_command, - [sym_command] = sym_command, - [sym_command_name] = sym_command_name, - [sym_variable_assignment] = sym_variable_assignment, - [sym_variable_assignments] = sym_variable_assignments, - [sym_subscript] = sym_subscript, - [sym_file_redirect] = sym_file_redirect, - [sym_heredoc_redirect] = sym_heredoc_redirect, - [sym__heredoc_pipeline] = sym_pipeline, - [sym__heredoc_body] = sym__heredoc_body, - [sym_heredoc_body] = sym_heredoc_body, - [sym__simple_heredoc_body] = sym__simple_heredoc_body, - [sym_herestring_redirect] = sym_herestring_redirect, - [sym__expression] = sym__expression, - [sym_binary_expression] = sym_binary_expression, - [sym_ternary_expression] = sym_ternary_expression, - [sym_unary_expression] = sym_unary_expression, - [sym_postfix_expression] = sym_postfix_expression, - [sym_parenthesized_expression] = sym_parenthesized_expression, - [sym_arithmetic_expansion] = sym_arithmetic_expansion, - [sym_brace_expression] = sym_brace_expression, - [sym__arithmetic_expression] = sym__arithmetic_expression, - [sym__arithmetic_literal] = sym__arithmetic_literal, - [sym__arithmetic_binary_expression] = sym_binary_expression, - [sym__arithmetic_ternary_expression] = sym_ternary_expression, - [sym__arithmetic_unary_expression] = sym_unary_expression, - [sym__arithmetic_postfix_expression] = sym_postfix_expression, - [sym__arithmetic_parenthesized_expression] = sym_parenthesized_expression, - [sym_concatenation] = sym_concatenation, - [sym_string] = sym_string, - [sym_translated_string] = sym_translated_string, - [sym_array] = sym_array, - [sym_number] = sym_number, - [sym_simple_expansion] = sym_simple_expansion, - [sym_expansion] = sym_expansion, - [sym__expansion_body] = sym__expansion_body, - [sym_command_substitution] = sym_command_substitution, - [sym_process_substitution] = sym_process_substitution, - [sym__c_terminator] = sym__c_terminator, - [aux_sym__statements_repeat1] = aux_sym__statements_repeat1, - [aux_sym_redirected_statement_repeat1] = aux_sym_redirected_statement_repeat1, - [aux_sym_redirected_statement_repeat2] = aux_sym_redirected_statement_repeat2, - [aux_sym_for_statement_repeat1] = aux_sym_for_statement_repeat1, - [aux_sym__for_body_repeat1] = aux_sym__for_body_repeat1, - [aux_sym_while_statement_repeat1] = aux_sym_while_statement_repeat1, - [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, - [aux_sym_case_statement_repeat1] = aux_sym_case_statement_repeat1, - [aux_sym_case_item_repeat1] = aux_sym_case_item_repeat1, - [aux_sym_declaration_command_repeat1] = aux_sym_declaration_command_repeat1, - [aux_sym_unset_command_repeat1] = aux_sym_unset_command_repeat1, - [aux_sym_command_repeat1] = aux_sym_command_repeat1, - [aux_sym_command_repeat2] = aux_sym_command_repeat2, - [aux_sym_variable_assignments_repeat1] = aux_sym_variable_assignments_repeat1, - [aux_sym_heredoc_body_repeat1] = aux_sym_heredoc_body_repeat1, - [aux_sym__literal_repeat1] = aux_sym__literal_repeat1, - [aux_sym_arithmetic_expansion_repeat1] = aux_sym_arithmetic_expansion_repeat1, - [aux_sym_concatenation_repeat1] = aux_sym_concatenation_repeat1, - [aux_sym_string_repeat1] = aux_sym_string_repeat1, - [aux_sym_expansion_repeat1] = aux_sym_expansion_repeat1, - [aux_sym__expansion_body_repeat1] = aux_sym__expansion_body_repeat1, - [aux_sym__expansion_body_repeat2] = aux_sym__expansion_body_repeat2, -}; - -static const TSSymbolMetadata ts_symbol_metadata[] = { - [ts_builtin_sym_end] = { - .visible = false, - .named = true, - }, - [sym_word] = { - .visible = true, - .named = true, - }, - [anon_sym_for] = { - .visible = true, - .named = false, - }, - [anon_sym_select] = { - .visible = true, - .named = false, - }, - [anon_sym_in] = { - .visible = true, - .named = false, - }, - [anon_sym_LPAREN_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN_RPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_SEMI] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_DASH] = { - .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_PERCENT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR_STAR_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT_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_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN] = { - .visible = true, - .named = false, - }, - [aux_sym__c_word_token1] = { - .visible = true, - .named = true, - }, - [anon_sym_while] = { - .visible = true, - .named = false, - }, - [anon_sym_until] = { - .visible = true, - .named = false, - }, - [anon_sym_do] = { - .visible = true, - .named = false, - }, - [anon_sym_done] = { - .visible = true, - .named = false, - }, - [anon_sym_if] = { - .visible = true, - .named = false, - }, - [anon_sym_then] = { - .visible = true, - .named = false, - }, - [anon_sym_fi] = { - .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_esac] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_SEMI_SEMI] = { - .visible = true, - .named = false, - }, - [anon_sym_SEMI_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_SEMI_SEMI_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_function] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACK_RBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_declare] = { - .visible = true, - .named = false, - }, - [anon_sym_typeset] = { - .visible = true, - .named = false, - }, - [anon_sym_export] = { - .visible = true, - .named = false, - }, - [anon_sym_readonly] = { - .visible = true, - .named = false, - }, - [anon_sym_local] = { - .visible = true, - .named = false, - }, - [anon_sym_unset] = { - .visible = true, - .named = false, - }, - [anon_sym_unsetenv] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_TILDE] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_GT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_LF] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET] = { - .visible = true, - .named = false, - }, - [anon_sym_QMARK] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON] = { - .visible = true, - .named = false, - }, - [aux_sym_unary_expression_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_DOLLAR_LPAREN_LPAREN] = { - .visible = true, - .named = false, - }, - [aux_sym_brace_expression_token1] = { - .visible = true, - .named = true, - }, - [anon_sym_DOT_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE2] = { - .visible = true, - .named = false, - }, - [aux_sym_concatenation_token1] = { - .visible = true, - .named = false, - }, - [anon_sym_DOLLAR] = { - .visible = true, - .named = false, - }, - [sym__special_character] = { - .visible = false, - .named = true, - }, - [anon_sym_DQUOTE] = { - .visible = true, - .named = false, - }, - [sym__string_content] = { - .visible = false, - .named = true, - }, - [sym_raw_string] = { - .visible = true, - .named = true, - }, - [sym_ansi_c_string] = { - .visible = true, - .named = true, - }, - [aux_sym_number_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_number_token2] = { - .visible = false, - .named = false, - }, - [anon_sym_POUND] = { - .visible = true, - .named = false, - }, - [anon_sym_DOLLAR_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE3] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON_QMARK] = { - .visible = true, - .named = false, - }, - [anon_sym_POUND_POUND] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH_SLASH] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH_POUND] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA_COMMA] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET_CARET] = { - .visible = true, - .named = false, - }, - [anon_sym_AT] = { - .visible = true, - .named = false, - }, - [anon_sym_U] = { - .visible = true, - .named = false, - }, - [anon_sym_u] = { - .visible = true, - .named = false, - }, - [anon_sym_L] = { - .visible = true, - .named = false, - }, - [anon_sym_Q] = { - .visible = true, - .named = false, - }, - [anon_sym_E] = { - .visible = true, - .named = false, - }, - [anon_sym_P] = { - .visible = true, - .named = false, - }, - [anon_sym_A] = { - .visible = true, - .named = false, - }, - [anon_sym_K] = { - .visible = true, - .named = false, - }, - [anon_sym_a] = { - .visible = true, - .named = false, - }, - [anon_sym_k] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA2] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA_COMMA2] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET2] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET_CARET2] = { - .visible = true, - .named = false, - }, - [anon_sym_DOLLAR_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_BQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_DOLLAR_BQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_LPAREN] = { - .visible = true, - .named = false, - }, - [sym_comment] = { - .visible = true, - .named = true, - }, - [sym__comment_word] = { - .visible = true, - .named = true, - }, - [aux_sym__simple_variable_name_token1] = { - .visible = true, - .named = true, - }, - [aux_sym__multiline_variable_name_token1] = { - .visible = true, - .named = true, - }, - [anon_sym_0] = { - .visible = true, - .named = true, - }, - [anon_sym__] = { - .visible = true, - .named = true, - }, - [sym_test_operator] = { - .visible = true, - .named = true, - }, - [sym_heredoc_start] = { - .visible = true, - .named = true, - }, - [sym_simple_heredoc_body] = { - .visible = true, - .named = true, - }, - [sym__heredoc_body_beginning] = { - .visible = false, - .named = true, - }, - [sym__heredoc_body_middle] = { - .visible = false, - .named = true, - }, - [sym_heredoc_end] = { - .visible = true, - .named = true, - }, - [sym_file_descriptor] = { - .visible = true, - .named = true, - }, - [sym__empty_value] = { - .visible = false, - .named = true, - }, - [sym__concat] = { - .visible = false, - .named = true, - }, - [sym_variable_name] = { - .visible = true, - .named = true, - }, - [sym_regex] = { - .visible = true, - .named = true, - }, - [sym__regex_no_slash] = { - .visible = true, - .named = true, - }, - [sym__regex_no_space] = { - .visible = true, - .named = true, - }, - [sym_extglob_pattern] = { - .visible = true, - .named = true, - }, - [sym__bare_dollar] = { - .visible = true, - .named = false, - }, - [sym__brace_start] = { - .visible = true, - .named = false, - }, - [sym_program] = { - .visible = true, - .named = true, - }, - [sym__statements] = { - .visible = false, - .named = true, - }, - [aux_sym__statements2] = { - .visible = false, - .named = false, - }, - [sym__terminated_statement] = { - .visible = false, - .named = true, - }, - [sym_redirected_statement] = { - .visible = true, - .named = true, - }, - [sym_for_statement] = { - .visible = true, - .named = true, - }, - [sym_c_style_for_statement] = { - .visible = true, - .named = true, - }, - [sym__for_body] = { - .visible = false, - .named = true, - }, - [sym__c_expression] = { - .visible = false, - .named = true, - }, - [sym__c_expression_not_assignment] = { - .visible = false, - .named = true, - }, - [sym__c_variable_assignment] = { - .visible = true, - .named = true, - }, - [sym__c_unary_expression] = { - .visible = true, - .named = true, - }, - [sym__c_binary_expression] = { - .visible = true, - .named = true, - }, - [sym__c_postfix_expression] = { - .visible = true, - .named = true, - }, - [sym__c_parenthesized_expression] = { - .visible = true, - .named = true, - }, - [sym_while_statement] = { - .visible = true, - .named = true, - }, - [sym_do_group] = { - .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_case_statement] = { - .visible = true, - .named = true, - }, - [sym_case_item] = { - .visible = true, - .named = true, - }, - [sym_last_case_item] = { - .visible = true, - .named = true, - }, - [sym_function_definition] = { - .visible = true, - .named = true, - }, - [sym_compound_statement] = { - .visible = true, - .named = true, - }, - [sym_subshell] = { - .visible = true, - .named = true, - }, - [sym_pipeline] = { - .visible = true, - .named = true, - }, - [sym_list] = { - .visible = true, - .named = true, - }, - [sym_negated_command] = { - .visible = true, - .named = true, - }, - [sym_test_command] = { - .visible = true, - .named = true, - }, - [sym_declaration_command] = { - .visible = true, - .named = true, - }, - [sym_unset_command] = { - .visible = true, - .named = true, - }, - [sym_command] = { - .visible = true, - .named = true, - }, - [sym_command_name] = { - .visible = true, - .named = true, - }, - [sym_variable_assignment] = { - .visible = true, - .named = true, - }, - [sym_variable_assignments] = { - .visible = true, - .named = true, - }, - [sym_subscript] = { - .visible = true, - .named = true, - }, - [sym_file_redirect] = { - .visible = true, - .named = true, - }, - [sym_heredoc_redirect] = { - .visible = true, - .named = true, - }, - [sym__heredoc_pipeline] = { - .visible = true, - .named = true, - }, - [sym__heredoc_body] = { - .visible = false, - .named = true, - }, - [sym_heredoc_body] = { - .visible = true, - .named = true, - }, - [sym__simple_heredoc_body] = { - .visible = false, - .named = true, - }, - [sym_herestring_redirect] = { - .visible = true, - .named = true, - }, - [sym__expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_binary_expression] = { - .visible = true, - .named = true, - }, - [sym_ternary_expression] = { - .visible = true, - .named = true, - }, - [sym_unary_expression] = { - .visible = true, - .named = true, - }, - [sym_postfix_expression] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_expression] = { - .visible = true, - .named = true, - }, - [sym_arithmetic_expansion] = { - .visible = true, - .named = true, - }, - [sym_brace_expression] = { - .visible = true, - .named = true, - }, - [sym__arithmetic_expression] = { - .visible = false, - .named = true, - }, - [sym__arithmetic_literal] = { - .visible = false, - .named = true, - }, - [sym__arithmetic_binary_expression] = { - .visible = true, - .named = true, - }, - [sym__arithmetic_ternary_expression] = { - .visible = true, - .named = true, - }, - [sym__arithmetic_unary_expression] = { - .visible = true, - .named = true, - }, - [sym__arithmetic_postfix_expression] = { - .visible = true, - .named = true, - }, - [sym__arithmetic_parenthesized_expression] = { - .visible = true, - .named = true, - }, - [sym_concatenation] = { - .visible = true, - .named = true, - }, - [sym_string] = { - .visible = true, - .named = true, - }, - [sym_translated_string] = { - .visible = true, - .named = true, - }, - [sym_array] = { - .visible = true, - .named = true, - }, - [sym_number] = { - .visible = true, - .named = true, - }, - [sym_simple_expansion] = { - .visible = true, - .named = true, - }, - [sym_expansion] = { - .visible = true, - .named = true, - }, - [sym__expansion_body] = { - .visible = false, - .named = true, - }, - [sym_command_substitution] = { - .visible = true, - .named = true, - }, - [sym_process_substitution] = { - .visible = true, - .named = true, - }, - [sym__c_terminator] = { - .visible = false, - .named = true, - }, - [aux_sym__statements_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_redirected_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_redirected_statement_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_for_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__for_body_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_while_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_if_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_case_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_case_item_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_declaration_command_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_unset_command_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_command_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_command_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_variable_assignments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_heredoc_body_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__literal_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_arithmetic_expansion_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_concatenation_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_string_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_expansion_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__expansion_body_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__expansion_body_repeat2] = { - .visible = false, - .named = false, - }, -}; - -enum { - field_alternative = 1, - field_argument = 2, - field_body = 3, - field_condition = 4, - field_consequence = 5, - field_descriptor = 6, - field_destination = 7, - field_fallthrough = 8, - field_index = 9, - field_initializer = 10, - field_left = 11, - field_name = 12, - field_operator = 13, - field_redirect = 14, - field_right = 15, - field_termination = 16, - field_update = 17, - field_value = 18, - field_variable = 19, -}; - -static const char * const ts_field_names[] = { - [0] = NULL, - [field_alternative] = "alternative", - [field_argument] = "argument", - [field_body] = "body", - [field_condition] = "condition", - [field_consequence] = "consequence", - [field_descriptor] = "descriptor", - [field_destination] = "destination", - [field_fallthrough] = "fallthrough", - [field_index] = "index", - [field_initializer] = "initializer", - [field_left] = "left", - [field_name] = "name", - [field_operator] = "operator", - [field_redirect] = "redirect", - [field_right] = "right", - [field_termination] = "termination", - [field_update] = "update", - [field_value] = "value", - [field_variable] = "variable", -}; - -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [2] = {.index = 0, .length = 1}, - [3] = {.index = 1, .length = 3}, - [4] = {.index = 4, .length = 3}, - [5] = {.index = 7, .length = 1}, - [8] = {.index = 8, .length = 2}, - [9] = {.index = 10, .length = 1}, - [10] = {.index = 10, .length = 1}, - [11] = {.index = 11, .length = 2}, - [12] = {.index = 13, .length = 1}, - [13] = {.index = 14, .length = 2}, - [14] = {.index = 16, .length = 2}, - [15] = {.index = 16, .length = 2}, - [16] = {.index = 18, .length = 2}, - [17] = {.index = 20, .length = 2}, - [19] = {.index = 22, .length = 1}, - [20] = {.index = 22, .length = 1}, - [21] = {.index = 23, .length = 1}, - [22] = {.index = 24, .length = 2}, - [23] = {.index = 24, .length = 2}, - [24] = {.index = 26, .length = 2}, - [25] = {.index = 28, .length = 2}, - [26] = {.index = 30, .length = 2}, - [27] = {.index = 30, .length = 2}, - [28] = {.index = 32, .length = 2}, - [29] = {.index = 34, .length = 3}, - [30] = {.index = 37, .length = 1}, - [31] = {.index = 38, .length = 1}, - [32] = {.index = 38, .length = 1}, - [34] = {.index = 22, .length = 1}, - [35] = {.index = 39, .length = 1}, - [37] = {.index = 22, .length = 1}, - [38] = {.index = 39, .length = 1}, - [39] = {.index = 40, .length = 1}, - [40] = {.index = 41, .length = 2}, - [41] = {.index = 43, .length = 1}, - [42] = {.index = 43, .length = 1}, - [44] = {.index = 44, .length = 4}, - [45] = {.index = 48, .length = 1}, - [46] = {.index = 49, .length = 1}, - [47] = {.index = 50, .length = 1}, - [48] = {.index = 50, .length = 1}, - [49] = {.index = 51, .length = 2}, - [50] = {.index = 53, .length = 4}, - [51] = {.index = 57, .length = 2}, - [52] = {.index = 59, .length = 2}, - [53] = {.index = 61, .length = 2}, - [54] = {.index = 63, .length = 2}, - [55] = {.index = 65, .length = 2}, - [56] = {.index = 67, .length = 2}, - [57] = {.index = 69, .length = 3}, - [58] = {.index = 72, .length = 3}, - [59] = {.index = 75, .length = 2}, - [60] = {.index = 77, .length = 2}, - [61] = {.index = 79, .length = 2}, - [62] = {.index = 81, .length = 2}, - [63] = {.index = 75, .length = 2}, - [64] = {.index = 77, .length = 2}, - [65] = {.index = 79, .length = 2}, - [68] = {.index = 83, .length = 3}, - [69] = {.index = 86, .length = 3}, - [70] = {.index = 89, .length = 3}, - [71] = {.index = 92, .length = 3}, - [72] = {.index = 95, .length = 3}, - [73] = {.index = 98, .length = 3}, - [74] = {.index = 101, .length = 3}, - [75] = {.index = 104, .length = 2}, - [76] = {.index = 106, .length = 2}, - [77] = {.index = 108, .length = 3}, - [78] = {.index = 111, .length = 3}, - [79] = {.index = 114, .length = 2}, - [80] = {.index = 116, .length = 2}, - [81] = {.index = 118, .length = 2}, - [82] = {.index = 114, .length = 2}, - [83] = {.index = 116, .length = 2}, - [84] = {.index = 118, .length = 2}, - [85] = {.index = 104, .length = 2}, - [86] = {.index = 106, .length = 2}, - [87] = {.index = 108, .length = 3}, - [88] = {.index = 111, .length = 3}, - [89] = {.index = 120, .length = 4}, - [90] = {.index = 124, .length = 4}, - [91] = {.index = 128, .length = 4}, - [92] = {.index = 132, .length = 4}, - [93] = {.index = 136, .length = 4}, - [94] = {.index = 140, .length = 4}, - [95] = {.index = 144, .length = 3}, - [96] = {.index = 147, .length = 3}, - [97] = {.index = 150, .length = 2}, - [98] = {.index = 152, .length = 2}, - [99] = {.index = 154, .length = 3}, - [100] = {.index = 157, .length = 3}, - [101] = {.index = 150, .length = 2}, - [102] = {.index = 152, .length = 2}, - [103] = {.index = 154, .length = 3}, - [104] = {.index = 157, .length = 3}, - [105] = {.index = 144, .length = 3}, - [106] = {.index = 147, .length = 3}, - [107] = {.index = 160, .length = 5}, - [108] = {.index = 165, .length = 5}, - [109] = {.index = 170, .length = 5}, - [110] = {.index = 175, .length = 3}, - [111] = {.index = 178, .length = 3}, - [112] = {.index = 175, .length = 3}, - [113] = {.index = 178, .length = 3}, - [114] = {.index = 181, .length = 6}, -}; - -static const TSFieldMapEntry ts_field_map_entries[] = { - [0] = - {field_name, 0}, - [1] = - {field_left, 0, .inherited = true}, - {field_operator, 0, .inherited = true}, - {field_right, 0, .inherited = true}, - [4] = - {field_alternative, 0, .inherited = true}, - {field_condition, 0, .inherited = true}, - {field_consequence, 0, .inherited = true}, - [7] = - {field_destination, 1}, - [8] = - {field_body, 0}, - {field_redirect, 1}, - [10] = - {field_argument, 0}, - [11] = - {field_argument, 1, .inherited = true}, - {field_name, 0}, - [13] = - {field_name, 1}, - [14] = - {field_descriptor, 0}, - {field_destination, 2}, - [16] = - {field_name, 0}, - {field_value, 2}, - [18] = - {field_body, 2}, - {field_condition, 1}, - [20] = - {field_body, 2}, - {field_name, 1}, - [22] = - {field_operator, 1}, - [23] = - {field_operator, 1, .inherited = true}, - [24] = - {field_argument, 0}, - {field_argument, 1}, - [26] = - {field_argument, 0, .inherited = true}, - {field_argument, 1, .inherited = true}, - [28] = - {field_argument, 2, .inherited = true}, - {field_name, 1}, - [30] = - {field_index, 2}, - {field_name, 0}, - [32] = - {field_body, 3}, - {field_variable, 1}, - [34] = - {field_left, 0}, - {field_operator, 1}, - {field_right, 2}, - [37] = - {field_condition, 1}, - [38] = - {field_value, 1}, - [39] = - {field_operator, 2}, - [40] = - {field_operator, 2, .inherited = true}, - [41] = - {field_body, 3}, - {field_name, 0}, - [43] = - {field_descriptor, 0}, - [44] = - {field_body, 4}, - {field_condition, 2, .inherited = true}, - {field_initializer, 2, .inherited = true}, - {field_update, 2, .inherited = true}, - [48] = - {field_initializer, 0}, - [49] = - {field_update, 2}, - [50] = - {field_value, 0}, - [51] = - {field_body, 4}, - {field_name, 1}, - [53] = - {field_body, 5}, - {field_condition, 2, .inherited = true}, - {field_initializer, 2, .inherited = true}, - {field_update, 2, .inherited = true}, - [57] = - {field_condition, 2}, - {field_initializer, 0}, - [59] = - {field_initializer, 0}, - {field_update, 3}, - [61] = - {field_initializer, 0}, - {field_initializer, 1}, - [63] = - {field_condition, 1}, - {field_update, 3}, - [65] = - {field_condition, 1}, - {field_condition, 2}, - [67] = - {field_update, 2}, - {field_update, 3}, - [69] = - {field_body, 5}, - {field_value, 3}, - {field_variable, 1}, - [72] = - {field_alternative, 4}, - {field_condition, 0}, - {field_consequence, 2}, - [75] = - {field_termination, 2}, - {field_value, 0}, - [77] = - {field_fallthrough, 2}, - {field_value, 0}, - [79] = - {field_value, 0}, - {field_value, 1, .inherited = true}, - [81] = - {field_value, 0, .inherited = true}, - {field_value, 1, .inherited = true}, - [83] = - {field_condition, 2}, - {field_initializer, 0}, - {field_update, 4}, - [86] = - {field_condition, 2}, - {field_condition, 3}, - {field_initializer, 0}, - [89] = - {field_initializer, 0}, - {field_update, 3}, - {field_update, 4}, - [92] = - {field_condition, 3}, - {field_initializer, 0}, - {field_initializer, 1}, - [95] = - {field_initializer, 0}, - {field_initializer, 1}, - {field_update, 4}, - [98] = - {field_condition, 1}, - {field_update, 3}, - {field_update, 4}, - [101] = - {field_condition, 1}, - {field_condition, 2}, - {field_update, 4}, - [104] = - {field_termination, 3}, - {field_value, 0}, - [106] = - {field_fallthrough, 3}, - {field_value, 0}, - [108] = - {field_termination, 3}, - {field_value, 0}, - {field_value, 1, .inherited = true}, - [111] = - {field_fallthrough, 3}, - {field_value, 0}, - {field_value, 1, .inherited = true}, - [114] = - {field_termination, 3}, - {field_value, 1}, - [116] = - {field_fallthrough, 3}, - {field_value, 1}, - [118] = - {field_value, 1}, - {field_value, 2, .inherited = true}, - [120] = - {field_condition, 2}, - {field_initializer, 0}, - {field_update, 4}, - {field_update, 5}, - [124] = - {field_condition, 2}, - {field_condition, 3}, - {field_initializer, 0}, - {field_update, 5}, - [128] = - {field_condition, 3}, - {field_initializer, 0}, - {field_initializer, 1}, - {field_update, 5}, - [132] = - {field_condition, 3}, - {field_condition, 4}, - {field_initializer, 0}, - {field_initializer, 1}, - [136] = - {field_initializer, 0}, - {field_initializer, 1}, - {field_update, 4}, - {field_update, 5}, - [140] = - {field_condition, 1}, - {field_condition, 2}, - {field_update, 4}, - {field_update, 5}, - [144] = - {field_termination, 4}, - {field_value, 0}, - {field_value, 1, .inherited = true}, - [147] = - {field_fallthrough, 4}, - {field_value, 0}, - {field_value, 1, .inherited = true}, - [150] = - {field_termination, 4}, - {field_value, 1}, - [152] = - {field_fallthrough, 4}, - {field_value, 1}, - [154] = - {field_termination, 4}, - {field_value, 1}, - {field_value, 2, .inherited = true}, - [157] = - {field_fallthrough, 4}, - {field_value, 1}, - {field_value, 2, .inherited = true}, - [160] = - {field_condition, 2}, - {field_condition, 3}, - {field_initializer, 0}, - {field_update, 5}, - {field_update, 6}, - [165] = - {field_condition, 3}, - {field_initializer, 0}, - {field_initializer, 1}, - {field_update, 5}, - {field_update, 6}, - [170] = - {field_condition, 3}, - {field_condition, 4}, - {field_initializer, 0}, - {field_initializer, 1}, - {field_update, 6}, - [175] = - {field_termination, 5}, - {field_value, 1}, - {field_value, 2, .inherited = true}, - [178] = - {field_fallthrough, 5}, - {field_value, 1}, - {field_value, 2, .inherited = true}, - [181] = - {field_condition, 3}, - {field_condition, 4}, - {field_initializer, 0}, - {field_initializer, 1}, - {field_update, 6}, - {field_update, 7}, -}; - -static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { - [0] = {0}, - [1] = { - [0] = sym_word, - }, - [6] = { - [1] = anon_sym_0, - }, - [7] = { - [0] = anon_sym_0, - }, - [10] = { - [0] = sym_word, - }, - [15] = { - [2] = sym_word, - }, - [18] = { - [1] = sym_word, - }, - [20] = { - [0] = anon_sym_0, - }, - [23] = { - [1] = sym_word, - }, - [27] = { - [2] = sym_word, - }, - [32] = { - [1] = sym_word, - }, - [33] = { - [2] = sym_regex, - }, - [34] = { - [2] = sym_regex, - }, - [36] = { - [0] = anon_sym_0, - [2] = sym_regex, - }, - [37] = { - [0] = anon_sym_0, - [2] = sym_regex, - }, - [38] = { - [0] = anon_sym_0, - }, - [42] = { - [2] = sym_word, - }, - [43] = { - [0] = sym_variable_name, - }, - [48] = { - [0] = sym_word, - }, - [63] = { - [0] = sym_word, - }, - [64] = { - [0] = sym_word, - }, - [65] = { - [0] = sym_word, - }, - [66] = { - [2] = sym_regex, - [4] = sym_word, - }, - [67] = { - [0] = anon_sym_0, - [2] = sym_regex, - [4] = sym_word, - }, - [82] = { - [1] = sym_word, - }, - [83] = { - [1] = sym_word, - }, - [84] = { - [1] = sym_word, - }, - [85] = { - [0] = sym_word, - }, - [86] = { - [0] = sym_word, - }, - [87] = { - [0] = sym_word, - }, - [88] = { - [0] = sym_word, - }, - [101] = { - [1] = sym_word, - }, - [102] = { - [1] = sym_word, - }, - [103] = { - [1] = sym_word, - }, - [104] = { - [1] = sym_word, - }, - [105] = { - [0] = sym_word, - }, - [106] = { - [0] = sym_word, - }, - [112] = { - [1] = sym_word, - }, - [113] = { - [1] = sym_word, - }, -}; - -static const uint16_t ts_non_terminal_alias_map[] = { - aux_sym__literal_repeat1, 2, - aux_sym__literal_repeat1, - sym_word, - 0, -}; - -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 3, - [4] = 2, - [5] = 3, - [6] = 2, - [7] = 3, - [8] = 8, - [9] = 9, - [10] = 9, - [11] = 8, - [12] = 9, - [13] = 8, - [14] = 14, - [15] = 14, - [16] = 14, - [17] = 17, - [18] = 18, - [19] = 18, - [20] = 17, - [21] = 18, - [22] = 17, - [23] = 23, - [24] = 24, - [25] = 25, - [26] = 26, - [27] = 27, - [28] = 28, - [29] = 29, - [30] = 30, - [31] = 31, - [32] = 32, - [33] = 33, - [34] = 34, - [35] = 35, - [36] = 36, - [37] = 37, - [38] = 8, - [39] = 39, - [40] = 40, - [41] = 41, - [42] = 42, - [43] = 43, - [44] = 44, - [45] = 45, - [46] = 46, - [47] = 47, - [48] = 48, - [49] = 49, - [50] = 50, - [51] = 51, - [52] = 49, - [53] = 49, - [54] = 54, - [55] = 54, - [56] = 54, - [57] = 54, - [58] = 54, - [59] = 59, - [60] = 54, - [61] = 54, - [62] = 54, - [63] = 63, - [64] = 64, - [65] = 63, - [66] = 66, - [67] = 63, - [68] = 68, - [69] = 66, - [70] = 66, - [71] = 63, - [72] = 68, - [73] = 66, - [74] = 63, - [75] = 68, - [76] = 66, - [77] = 63, - [78] = 78, - [79] = 68, - [80] = 64, - [81] = 66, - [82] = 63, - [83] = 68, - [84] = 84, - [85] = 64, - [86] = 66, - [87] = 87, - [88] = 88, - [89] = 63, - [90] = 68, - [91] = 64, - [92] = 66, - [93] = 93, - [94] = 78, - [95] = 63, - [96] = 68, - [97] = 64, - [98] = 98, - [99] = 66, - [100] = 63, - [101] = 68, - [102] = 64, - [103] = 84, - [104] = 66, - [105] = 63, - [106] = 68, - [107] = 87, - [108] = 64, - [109] = 66, - [110] = 63, - [111] = 68, - [112] = 64, - [113] = 68, - [114] = 66, - [115] = 63, - [116] = 68, - [117] = 64, - [118] = 63, - [119] = 66, - [120] = 63, - [121] = 66, - [122] = 68, - [123] = 84, - [124] = 64, - [125] = 66, - [126] = 63, - [127] = 68, - [128] = 64, - [129] = 66, - [130] = 63, - [131] = 68, - [132] = 64, - [133] = 64, - [134] = 88, - [135] = 66, - [136] = 136, - [137] = 63, - [138] = 68, - [139] = 64, - [140] = 66, - [141] = 93, - [142] = 78, - [143] = 98, - [144] = 63, - [145] = 68, - [146] = 64, - [147] = 84, - [148] = 68, - [149] = 66, - [150] = 63, - [151] = 63, - [152] = 68, - [153] = 64, - [154] = 66, - [155] = 66, - [156] = 63, - [157] = 68, - [158] = 64, - [159] = 66, - [160] = 63, - [161] = 64, - [162] = 68, - [163] = 64, - [164] = 66, - [165] = 63, - [166] = 68, - [167] = 64, - [168] = 66, - [169] = 63, - [170] = 68, - [171] = 64, - [172] = 66, - [173] = 63, - [174] = 68, - [175] = 64, - [176] = 66, - [177] = 63, - [178] = 68, - [179] = 64, - [180] = 66, - [181] = 63, - [182] = 68, - [183] = 64, - [184] = 68, - [185] = 66, - [186] = 186, - [187] = 63, - [188] = 68, - [189] = 63, - [190] = 93, - [191] = 64, - [192] = 63, - [193] = 66, - [194] = 66, - [195] = 63, - [196] = 68, - [197] = 64, - [198] = 88, - [199] = 66, - [200] = 63, - [201] = 40, - [202] = 68, - [203] = 66, - [204] = 64, - [205] = 64, - [206] = 66, - [207] = 63, - [208] = 68, - [209] = 64, - [210] = 66, - [211] = 63, - [212] = 68, - [213] = 63, - [214] = 68, - [215] = 64, - [216] = 66, - [217] = 66, - [218] = 64, - [219] = 68, - [220] = 64, - [221] = 66, - [222] = 63, - [223] = 68, - [224] = 64, - [225] = 66, - [226] = 63, - [227] = 68, - [228] = 64, - [229] = 66, - [230] = 63, - [231] = 98, - [232] = 68, - [233] = 64, - [234] = 66, - [235] = 63, - [236] = 68, - [237] = 64, - [238] = 66, - [239] = 63, - [240] = 68, - [241] = 68, - [242] = 64, - [243] = 63, - [244] = 66, - [245] = 87, - [246] = 66, - [247] = 63, - [248] = 68, - [249] = 64, - [250] = 66, - [251] = 63, - [252] = 68, - [253] = 64, - [254] = 66, - [255] = 63, - [256] = 68, - [257] = 64, - [258] = 64, - [259] = 66, - [260] = 68, - [261] = 63, - [262] = 68, - [263] = 64, - [264] = 66, - [265] = 63, - [266] = 68, - [267] = 63, - [268] = 68, - [269] = 64, - [270] = 63, - [271] = 66, - [272] = 66, - [273] = 63, - [274] = 64, - [275] = 68, - [276] = 68, - [277] = 68, - [278] = 66, - [279] = 63, - [280] = 68, - [281] = 64, - [282] = 66, - [283] = 63, - [284] = 68, - [285] = 64, - [286] = 66, - [287] = 63, - [288] = 68, - [289] = 64, - [290] = 66, - [291] = 63, - [292] = 68, - [293] = 64, - [294] = 66, - [295] = 295, - [296] = 295, - [297] = 295, - [298] = 295, - [299] = 299, - [300] = 300, - [301] = 300, - [302] = 302, - [303] = 295, - [304] = 300, - [305] = 305, - [306] = 306, - [307] = 305, - [308] = 306, - [309] = 305, - [310] = 305, - [311] = 306, - [312] = 306, - [313] = 305, - [314] = 306, - [315] = 315, - [316] = 305, - [317] = 306, - [318] = 305, - [319] = 306, - [320] = 306, - [321] = 305, - [322] = 322, - [323] = 323, - [324] = 323, - [325] = 323, - [326] = 322, - [327] = 322, - [328] = 322, - [329] = 322, - [330] = 322, - [331] = 323, - [332] = 322, - [333] = 322, - [334] = 334, - [335] = 335, - [336] = 334, - [337] = 335, - [338] = 338, - [339] = 334, - [340] = 335, - [341] = 338, - [342] = 342, - [343] = 343, - [344] = 344, - [345] = 345, - [346] = 342, - [347] = 347, - [348] = 338, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 347, - [356] = 356, - [357] = 357, - [358] = 358, - [359] = 345, - [360] = 344, - [361] = 361, - [362] = 342, - [363] = 343, - [364] = 364, - [365] = 365, - [366] = 366, - [367] = 367, - [368] = 368, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 349, - [375] = 364, - [376] = 365, - [377] = 377, - [378] = 373, - [379] = 377, - [380] = 372, - [381] = 354, - [382] = 368, - [383] = 366, - [384] = 350, - [385] = 369, - [386] = 371, - [387] = 351, - [388] = 370, - [389] = 352, - [390] = 353, - [391] = 356, - [392] = 357, - [393] = 358, - [394] = 361, - [395] = 395, - [396] = 367, - [397] = 397, - [398] = 395, - [399] = 377, - [400] = 400, - [401] = 338, - [402] = 400, - [403] = 342, - [404] = 347, - [405] = 400, - [406] = 345, - [407] = 343, - [408] = 344, - [409] = 397, - [410] = 356, - [411] = 365, - [412] = 370, - [413] = 357, - [414] = 358, - [415] = 352, - [416] = 372, - [417] = 361, - [418] = 366, - [419] = 364, - [420] = 353, - [421] = 368, - [422] = 369, - [423] = 351, - [424] = 371, - [425] = 349, - [426] = 350, - [427] = 367, - [428] = 373, - [429] = 354, - [430] = 430, - [431] = 377, - [432] = 395, - [433] = 397, - [434] = 400, - [435] = 435, - [436] = 435, - [437] = 435, - [438] = 435, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 441, - [443] = 443, - [444] = 439, - [445] = 440, - [446] = 446, - [447] = 447, - [448] = 448, - [449] = 449, - [450] = 446, - [451] = 449, - [452] = 448, - [453] = 443, - [454] = 439, - [455] = 447, - [456] = 439, - [457] = 441, - [458] = 441, - [459] = 440, - [460] = 440, - [461] = 335, - [462] = 334, - [463] = 334, - [464] = 448, - [465] = 465, - [466] = 466, - [467] = 449, - [468] = 468, - [469] = 469, - [470] = 448, - [471] = 471, - [472] = 443, - [473] = 446, - [474] = 443, - [475] = 449, - [476] = 447, - [477] = 439, - [478] = 335, - [479] = 441, - [480] = 440, - [481] = 446, - [482] = 440, - [483] = 441, - [484] = 447, - [485] = 485, - [486] = 471, - [487] = 334, - [488] = 446, - [489] = 471, - [490] = 334, - [491] = 449, - [492] = 443, - [493] = 335, - [494] = 448, - [495] = 446, - [496] = 465, - [497] = 469, - [498] = 334, - [499] = 335, - [500] = 468, - [501] = 334, - [502] = 466, - [503] = 447, - [504] = 485, - [505] = 443, - [506] = 449, - [507] = 469, - [508] = 335, - [509] = 448, - [510] = 468, - [511] = 335, - [512] = 465, - [513] = 466, - [514] = 485, - [515] = 335, - [516] = 334, - [517] = 469, - [518] = 471, - [519] = 469, - [520] = 468, - [521] = 471, - [522] = 469, - [523] = 471, - [524] = 334, - [525] = 335, - [526] = 468, - [527] = 465, - [528] = 335, - [529] = 334, - [530] = 468, - [531] = 334, - [532] = 466, - [533] = 335, - [534] = 335, - [535] = 334, - [536] = 485, - [537] = 335, - [538] = 439, - [539] = 466, - [540] = 540, - [541] = 471, - [542] = 468, - [543] = 465, - [544] = 335, - [545] = 469, - [546] = 334, - [547] = 485, - [548] = 548, - [549] = 465, - [550] = 469, - [551] = 540, - [552] = 334, - [553] = 471, - [554] = 334, - [555] = 471, - [556] = 335, - [557] = 440, - [558] = 468, - [559] = 466, - [560] = 560, - [561] = 441, - [562] = 334, - [563] = 334, - [564] = 335, - [565] = 334, - [566] = 560, - [567] = 468, - [568] = 469, - [569] = 335, - [570] = 335, - [571] = 334, - [572] = 334, - [573] = 469, - [574] = 334, - [575] = 335, - [576] = 576, - [577] = 576, - [578] = 576, - [579] = 576, - [580] = 576, - [581] = 440, - [582] = 576, - [583] = 441, - [584] = 334, - [585] = 335, - [586] = 334, - [587] = 576, - [588] = 443, - [589] = 335, - [590] = 449, - [591] = 335, - [592] = 334, - [593] = 335, - [594] = 468, - [595] = 335, - [596] = 447, - [597] = 446, - [598] = 471, - [599] = 576, - [600] = 468, - [601] = 469, - [602] = 448, - [603] = 439, - [604] = 449, - [605] = 605, - [606] = 335, - [607] = 334, - [608] = 608, - [609] = 447, - [610] = 610, - [611] = 446, - [612] = 443, - [613] = 613, - [614] = 334, - [615] = 448, - [616] = 616, - [617] = 334, - [618] = 335, - [619] = 335, - [620] = 468, - [621] = 621, - [622] = 469, - [623] = 540, - [624] = 613, - [625] = 616, - [626] = 468, - [627] = 469, - [628] = 548, - [629] = 466, - [630] = 621, - [631] = 610, - [632] = 608, - [633] = 621, - [634] = 465, - [635] = 560, - [636] = 485, - [637] = 637, - [638] = 638, - [639] = 471, - [640] = 334, - [641] = 335, - [642] = 471, - [643] = 335, - [644] = 613, - [645] = 466, - [646] = 646, - [647] = 468, - [648] = 616, - [649] = 469, - [650] = 465, - [651] = 334, - [652] = 540, - [653] = 608, - [654] = 335, - [655] = 335, - [656] = 610, - [657] = 638, - [658] = 334, - [659] = 485, - [660] = 560, - [661] = 334, - [662] = 613, - [663] = 616, - [664] = 471, - [665] = 665, - [666] = 666, - [667] = 335, - [668] = 334, - [669] = 471, - [670] = 469, - [671] = 468, - [672] = 471, - [673] = 673, - [674] = 610, - [675] = 675, - [676] = 608, - [677] = 335, - [678] = 678, - [679] = 343, - [680] = 347, - [681] = 681, - [682] = 469, - [683] = 334, - [684] = 344, - [685] = 468, - [686] = 345, - [687] = 335, - [688] = 345, - [689] = 335, - [690] = 334, - [691] = 354, - [692] = 638, - [693] = 371, - [694] = 351, - [695] = 352, - [696] = 334, - [697] = 335, - [698] = 353, - [699] = 357, - [700] = 361, - [701] = 610, - [702] = 356, - [703] = 616, - [704] = 358, - [705] = 364, - [706] = 706, - [707] = 344, - [708] = 345, - [709] = 709, - [710] = 347, - [711] = 370, - [712] = 349, - [713] = 365, - [714] = 372, - [715] = 335, - [716] = 373, - [717] = 367, - [718] = 350, - [719] = 335, - [720] = 369, - [721] = 368, - [722] = 334, - [723] = 366, - [724] = 343, - [725] = 344, - [726] = 334, - [727] = 727, - [728] = 678, - [729] = 681, - [730] = 730, - [731] = 347, - [732] = 732, - [733] = 343, - [734] = 665, - [735] = 334, - [736] = 335, - [737] = 334, - [738] = 335, - [739] = 666, - [740] = 468, - [741] = 334, - [742] = 613, - [743] = 608, - [744] = 334, - [745] = 335, - [746] = 469, - [747] = 747, - [748] = 748, - [749] = 334, - [750] = 335, - [751] = 638, - [752] = 471, - [753] = 753, - [754] = 610, - [755] = 732, - [756] = 616, - [757] = 675, - [758] = 673, - [759] = 759, - [760] = 334, - [761] = 335, - [762] = 762, - [763] = 732, - [764] = 759, - [765] = 753, - [766] = 367, - [767] = 344, - [768] = 638, - [769] = 673, - [770] = 727, - [771] = 345, - [772] = 730, - [773] = 675, - [774] = 673, - [775] = 373, - [776] = 675, - [777] = 666, - [778] = 665, - [779] = 747, - [780] = 748, - [781] = 347, - [782] = 782, - [783] = 783, - [784] = 784, - [785] = 785, - [786] = 747, - [787] = 748, - [788] = 343, - [789] = 365, - [790] = 681, - [791] = 334, - [792] = 792, - [793] = 335, - [794] = 665, - [795] = 678, - [796] = 395, - [797] = 344, - [798] = 345, - [799] = 347, - [800] = 681, - [801] = 678, - [802] = 354, - [803] = 371, - [804] = 351, - [805] = 352, - [806] = 353, - [807] = 344, - [808] = 345, - [809] = 809, - [810] = 347, - [811] = 343, - [812] = 357, - [813] = 345, - [814] = 344, - [815] = 361, - [816] = 343, - [817] = 817, - [818] = 818, - [819] = 354, - [820] = 356, - [821] = 371, - [822] = 351, - [823] = 358, - [824] = 824, - [825] = 352, - [826] = 364, - [827] = 353, - [828] = 666, - [829] = 638, - [830] = 357, - [831] = 831, - [832] = 370, - [833] = 349, - [834] = 361, - [835] = 372, - [836] = 347, - [837] = 356, - [838] = 350, - [839] = 358, - [840] = 369, - [841] = 368, - [842] = 364, - [843] = 366, - [844] = 343, - [845] = 365, - [846] = 347, - [847] = 367, - [848] = 370, - [849] = 349, - [850] = 372, - [851] = 373, - [852] = 350, - [853] = 369, - [854] = 368, - [855] = 345, - [856] = 344, - [857] = 334, - [858] = 335, - [859] = 366, - [860] = 860, - [861] = 861, - [862] = 334, - [863] = 335, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 343, - [868] = 868, - [869] = 869, - [870] = 365, - [871] = 364, - [872] = 397, - [873] = 354, - [874] = 371, - [875] = 351, - [876] = 352, - [877] = 353, - [878] = 354, - [879] = 357, - [880] = 371, - [881] = 351, - [882] = 347, - [883] = 345, - [884] = 352, - [885] = 361, - [886] = 365, - [887] = 353, - [888] = 344, - [889] = 344, - [890] = 748, - [891] = 345, - [892] = 747, - [893] = 343, - [894] = 894, - [895] = 730, - [896] = 894, - [897] = 347, - [898] = 727, - [899] = 894, - [900] = 900, - [901] = 356, - [902] = 343, - [903] = 344, - [904] = 395, - [905] = 357, - [906] = 358, - [907] = 792, - [908] = 894, - [909] = 361, - [910] = 364, - [911] = 345, - [912] = 347, - [913] = 784, - [914] = 785, - [915] = 747, - [916] = 343, - [917] = 356, - [918] = 367, - [919] = 748, - [920] = 358, - [921] = 370, - [922] = 349, - [923] = 364, - [924] = 809, - [925] = 344, - [926] = 354, - [927] = 372, - [928] = 356, - [929] = 373, - [930] = 345, - [931] = 364, - [932] = 343, - [933] = 817, - [934] = 678, - [935] = 681, - [936] = 818, - [937] = 344, - [938] = 366, - [939] = 345, - [940] = 831, - [941] = 894, - [942] = 784, - [943] = 785, - [944] = 675, - [945] = 673, - [946] = 353, - [947] = 366, - [948] = 347, - [949] = 894, - [950] = 950, - [951] = 368, - [952] = 369, - [953] = 366, - [954] = 368, - [955] = 357, - [956] = 365, - [957] = 894, - [958] = 666, - [959] = 665, - [960] = 354, - [961] = 367, - [962] = 350, - [963] = 748, - [964] = 747, - [965] = 395, - [966] = 371, - [967] = 351, - [968] = 371, - [969] = 351, - [970] = 369, - [971] = 350, - [972] = 358, - [973] = 369, - [974] = 974, - [975] = 350, - [976] = 370, - [977] = 349, - [978] = 352, - [979] = 368, - [980] = 367, - [981] = 370, - [982] = 373, - [983] = 372, - [984] = 349, - [985] = 352, - [986] = 366, - [987] = 353, - [988] = 373, - [989] = 372, - [990] = 373, - [991] = 372, - [992] = 344, - [993] = 345, - [994] = 349, - [995] = 361, - [996] = 996, - [997] = 370, - [998] = 367, - [999] = 730, - [1000] = 727, - [1001] = 365, - [1002] = 894, - [1003] = 1003, - [1004] = 347, - [1005] = 361, - [1006] = 372, - [1007] = 373, - [1008] = 354, - [1009] = 356, - [1010] = 367, - [1011] = 350, - [1012] = 364, - [1013] = 343, - [1014] = 350, - [1015] = 353, - [1016] = 357, - [1017] = 369, - [1018] = 368, - [1019] = 361, - [1020] = 366, - [1021] = 357, - [1022] = 371, - [1023] = 351, - [1024] = 358, - [1025] = 343, - [1026] = 1026, - [1027] = 356, - [1028] = 358, - [1029] = 369, - [1030] = 368, - [1031] = 365, - [1032] = 370, - [1033] = 349, - [1034] = 352, - [1035] = 370, - [1036] = 397, - [1037] = 347, - [1038] = 370, - [1039] = 349, - [1040] = 364, - [1041] = 352, - [1042] = 372, - [1043] = 358, - [1044] = 616, - [1045] = 356, - [1046] = 350, - [1047] = 354, - [1048] = 356, - [1049] = 395, - [1050] = 357, - [1051] = 354, - [1052] = 358, - [1053] = 349, - [1054] = 369, - [1055] = 368, - [1056] = 361, - [1057] = 364, - [1058] = 366, - [1059] = 809, - [1060] = 351, - [1061] = 395, - [1062] = 373, - [1063] = 371, - [1064] = 344, - [1065] = 370, - [1066] = 357, - [1067] = 345, - [1068] = 395, - [1069] = 352, - [1070] = 361, - [1071] = 371, - [1072] = 747, - [1073] = 343, - [1074] = 748, - [1075] = 353, - [1076] = 353, - [1077] = 367, - [1078] = 343, - [1079] = 792, - [1080] = 817, - [1081] = 343, - [1082] = 365, - [1083] = 356, - [1084] = 365, - [1085] = 367, - [1086] = 358, - [1087] = 370, - [1088] = 349, - [1089] = 364, - [1090] = 1090, - [1091] = 818, - [1092] = 372, - [1093] = 373, - [1094] = 351, - [1095] = 372, - [1096] = 831, - [1097] = 351, - [1098] = 373, - [1099] = 371, - [1100] = 357, - [1101] = 344, - [1102] = 345, - [1103] = 1103, - [1104] = 831, - [1105] = 354, - [1106] = 367, - [1107] = 365, - [1108] = 365, - [1109] = 350, - [1110] = 347, - [1111] = 369, - [1112] = 367, - [1113] = 350, - [1114] = 369, - [1115] = 368, - [1116] = 368, - [1117] = 361, - [1118] = 349, - [1119] = 366, - [1120] = 366, - [1121] = 372, - [1122] = 784, - [1123] = 373, - [1124] = 785, - [1125] = 343, - [1126] = 344, - [1127] = 345, - [1128] = 785, - [1129] = 784, - [1130] = 900, - [1131] = 347, - [1132] = 397, - [1133] = 352, - [1134] = 353, - [1135] = 818, - [1136] = 817, - [1137] = 1137, - [1138] = 350, - [1139] = 792, - [1140] = 1140, - [1141] = 369, - [1142] = 368, - [1143] = 366, - [1144] = 354, - [1145] = 344, - [1146] = 950, - [1147] = 345, - [1148] = 353, - [1149] = 395, - [1150] = 371, - [1151] = 351, - [1152] = 357, - [1153] = 352, - [1154] = 809, - [1155] = 353, - [1156] = 343, - [1157] = 366, - [1158] = 361, - [1159] = 344, - [1160] = 364, - [1161] = 356, - [1162] = 368, - [1163] = 369, - [1164] = 350, - [1165] = 345, - [1166] = 747, - [1167] = 373, - [1168] = 372, - [1169] = 748, - [1170] = 349, - [1171] = 370, - [1172] = 352, - [1173] = 367, - [1174] = 730, - [1175] = 344, - [1176] = 727, - [1177] = 358, - [1178] = 785, - [1179] = 784, - [1180] = 365, - [1181] = 345, - [1182] = 357, - [1183] = 974, - [1184] = 610, - [1185] = 347, - [1186] = 395, - [1187] = 358, - [1188] = 747, - [1189] = 748, - [1190] = 354, - [1191] = 356, - [1192] = 900, - [1193] = 996, - [1194] = 1194, - [1195] = 343, - [1196] = 361, - [1197] = 364, - [1198] = 371, - [1199] = 1199, - [1200] = 1003, - [1201] = 351, - [1202] = 347, - [1203] = 357, - [1204] = 1140, - [1205] = 351, - [1206] = 371, - [1207] = 372, - [1208] = 373, - [1209] = 353, - [1210] = 747, - [1211] = 748, - [1212] = 784, - [1213] = 785, - [1214] = 356, - [1215] = 350, - [1216] = 1216, - [1217] = 344, - [1218] = 345, - [1219] = 343, - [1220] = 352, - [1221] = 349, - [1222] = 1137, - [1223] = 357, - [1224] = 358, - [1225] = 369, - [1226] = 1103, - [1227] = 368, - [1228] = 370, - [1229] = 361, - [1230] = 364, - [1231] = 345, - [1232] = 351, - [1233] = 350, - [1234] = 367, - [1235] = 371, - [1236] = 817, - [1237] = 366, - [1238] = 357, - [1239] = 344, - [1240] = 900, - [1241] = 373, - [1242] = 818, - [1243] = 370, - [1244] = 349, - [1245] = 372, - [1246] = 365, - [1247] = 352, - [1248] = 395, - [1249] = 367, - [1250] = 367, - [1251] = 370, - [1252] = 349, - [1253] = 354, - [1254] = 1140, - [1255] = 1194, - [1256] = 343, - [1257] = 365, - [1258] = 1199, - [1259] = 372, - [1260] = 373, - [1261] = 1199, - [1262] = 1194, - [1263] = 350, - [1264] = 369, - [1265] = 974, - [1266] = 368, - [1267] = 366, - [1268] = 395, - [1269] = 366, - [1270] = 785, - [1271] = 368, - [1272] = 356, - [1273] = 369, - [1274] = 397, - [1275] = 1003, - [1276] = 354, - [1277] = 350, - [1278] = 950, - [1279] = 351, - [1280] = 364, - [1281] = 343, - [1282] = 397, - [1283] = 638, - [1284] = 358, - [1285] = 373, - [1286] = 372, - [1287] = 784, - [1288] = 356, - [1289] = 996, - [1290] = 349, - [1291] = 1291, - [1292] = 353, - [1293] = 352, - [1294] = 370, - [1295] = 900, - [1296] = 351, - [1297] = 371, - [1298] = 361, - [1299] = 1137, - [1300] = 369, - [1301] = 367, - [1302] = 354, - [1303] = 344, - [1304] = 366, - [1305] = 368, - [1306] = 369, - [1307] = 350, - [1308] = 367, - [1309] = 373, - [1310] = 345, - [1311] = 347, - [1312] = 372, - [1313] = 365, - [1314] = 353, - [1315] = 365, - [1316] = 364, - [1317] = 361, - [1318] = 352, - [1319] = 349, - [1320] = 370, - [1321] = 368, - [1322] = 616, - [1323] = 358, - [1324] = 610, - [1325] = 351, - [1326] = 371, - [1327] = 357, - [1328] = 1328, - [1329] = 364, - [1330] = 353, - [1331] = 356, - [1332] = 361, - [1333] = 354, - [1334] = 343, - [1335] = 358, - [1336] = 996, - [1337] = 785, - [1338] = 356, - [1339] = 784, - [1340] = 364, - [1341] = 1003, - [1342] = 950, - [1343] = 371, - [1344] = 358, - [1345] = 395, - [1346] = 361, - [1347] = 397, - [1348] = 900, - [1349] = 357, - [1350] = 395, - [1351] = 354, - [1352] = 397, - [1353] = 344, - [1354] = 345, - [1355] = 365, - [1356] = 347, - [1357] = 397, - [1358] = 974, - [1359] = 353, - [1360] = 366, - [1361] = 395, - [1362] = 352, - [1363] = 352, - [1364] = 350, - [1365] = 1291, - [1366] = 343, - [1367] = 397, - [1368] = 1137, - [1369] = 678, - [1370] = 900, - [1371] = 1194, - [1372] = 395, - [1373] = 395, - [1374] = 397, - [1375] = 784, - [1376] = 1137, - [1377] = 681, - [1378] = 675, - [1379] = 785, - [1380] = 343, - [1381] = 343, - [1382] = 673, - [1383] = 345, - [1384] = 344, - [1385] = 1199, - [1386] = 1140, - [1387] = 638, - [1388] = 1194, - [1389] = 1199, - [1390] = 1103, - [1391] = 366, - [1392] = 344, - [1393] = 345, - [1394] = 1137, - [1395] = 354, - [1396] = 371, - [1397] = 666, - [1398] = 368, - [1399] = 351, - [1400] = 353, - [1401] = 356, - [1402] = 357, - [1403] = 358, - [1404] = 395, - [1405] = 361, - [1406] = 369, - [1407] = 665, - [1408] = 1216, - [1409] = 364, - [1410] = 350, - [1411] = 373, - [1412] = 372, - [1413] = 334, - [1414] = 335, - [1415] = 395, - [1416] = 347, - [1417] = 349, - [1418] = 370, - [1419] = 395, - [1420] = 365, - [1421] = 1103, - [1422] = 367, - [1423] = 397, - [1424] = 397, - [1425] = 367, - [1426] = 370, - [1427] = 349, - [1428] = 365, - [1429] = 372, - [1430] = 373, - [1431] = 354, - [1432] = 1199, - [1433] = 371, - [1434] = 1194, - [1435] = 351, - [1436] = 369, - [1437] = 364, - [1438] = 1140, - [1439] = 368, - [1440] = 358, - [1441] = 352, - [1442] = 366, - [1443] = 1140, - [1444] = 356, - [1445] = 353, - [1446] = 900, - [1447] = 397, - [1448] = 357, - [1449] = 361, - [1450] = 1450, - [1451] = 1199, - [1452] = 1450, - [1453] = 1450, - [1454] = 1137, - [1455] = 1450, - [1456] = 1450, - [1457] = 1194, - [1458] = 343, - [1459] = 678, - [1460] = 681, - [1461] = 1216, - [1462] = 1450, - [1463] = 471, - [1464] = 1450, - [1465] = 395, - [1466] = 1450, - [1467] = 469, - [1468] = 397, - [1469] = 1450, - [1470] = 347, - [1471] = 675, - [1472] = 343, - [1473] = 356, - [1474] = 1450, - [1475] = 673, - [1476] = 1450, - [1477] = 1450, - [1478] = 1450, - [1479] = 1450, - [1480] = 357, - [1481] = 1450, - [1482] = 354, - [1483] = 1450, - [1484] = 1216, - [1485] = 371, - [1486] = 397, - [1487] = 397, - [1488] = 351, - [1489] = 1450, - [1490] = 1450, - [1491] = 358, - [1492] = 1450, - [1493] = 1450, - [1494] = 1450, - [1495] = 1194, - [1496] = 395, - [1497] = 343, - [1498] = 1450, - [1499] = 1291, - [1500] = 1450, - [1501] = 1450, - [1502] = 397, - [1503] = 1450, - [1504] = 370, - [1505] = 349, - [1506] = 352, - [1507] = 343, - [1508] = 1450, - [1509] = 1450, - [1510] = 1450, - [1511] = 361, - [1512] = 1450, - [1513] = 343, - [1514] = 1450, - [1515] = 748, - [1516] = 1450, - [1517] = 747, - [1518] = 343, - [1519] = 1140, - [1520] = 468, - [1521] = 347, - [1522] = 364, - [1523] = 1450, - [1524] = 345, - [1525] = 344, - [1526] = 1450, - [1527] = 343, - [1528] = 365, - [1529] = 1450, - [1530] = 727, - [1531] = 1450, - [1532] = 343, - [1533] = 730, - [1534] = 1450, - [1535] = 1450, - [1536] = 1450, - [1537] = 353, - [1538] = 1450, - [1539] = 666, - [1540] = 1450, - [1541] = 1450, - [1542] = 366, - [1543] = 1450, - [1544] = 665, - [1545] = 368, - [1546] = 344, - [1547] = 345, - [1548] = 1199, - [1549] = 1450, - [1550] = 1450, - [1551] = 369, - [1552] = 1450, - [1553] = 1450, - [1554] = 1450, - [1555] = 1140, - [1556] = 1450, - [1557] = 1557, - [1558] = 350, - [1559] = 1450, - [1560] = 1137, - [1561] = 367, - [1562] = 1450, - [1563] = 1450, - [1564] = 397, - [1565] = 345, - [1566] = 373, - [1567] = 1450, - [1568] = 1450, - [1569] = 372, - [1570] = 1291, - [1571] = 1450, - [1572] = 344, - [1573] = 818, - [1574] = 1574, - [1575] = 343, - [1576] = 343, - [1577] = 748, - [1578] = 747, - [1579] = 785, - [1580] = 784, - [1581] = 747, - [1582] = 748, - [1583] = 1557, - [1584] = 1557, - [1585] = 1585, - [1586] = 1586, - [1587] = 1587, - [1588] = 730, - [1589] = 727, - [1590] = 1590, - [1591] = 397, - [1592] = 1574, - [1593] = 1557, - [1594] = 344, - [1595] = 345, - [1596] = 345, - [1597] = 344, - [1598] = 395, - [1599] = 1557, - [1600] = 395, - [1601] = 1601, - [1602] = 347, - [1603] = 1587, - [1604] = 1585, - [1605] = 354, - [1606] = 344, - [1607] = 345, - [1608] = 1608, - [1609] = 1609, - [1610] = 371, - [1611] = 351, - [1612] = 345, - [1613] = 1574, - [1614] = 352, - [1615] = 1574, - [1616] = 353, - [1617] = 1617, - [1618] = 1291, - [1619] = 344, - [1620] = 784, - [1621] = 1621, - [1622] = 785, - [1623] = 1623, - [1624] = 366, - [1625] = 357, - [1626] = 344, - [1627] = 1627, - [1628] = 1628, - [1629] = 1629, - [1630] = 345, - [1631] = 368, - [1632] = 369, - [1633] = 1633, - [1634] = 361, - [1635] = 1557, - [1636] = 1586, - [1637] = 1557, - [1638] = 397, - [1639] = 350, - [1640] = 1640, - [1641] = 1586, - [1642] = 1574, - [1643] = 1574, - [1644] = 373, - [1645] = 372, - [1646] = 349, - [1647] = 370, - [1648] = 344, - [1649] = 356, - [1650] = 1609, - [1651] = 345, - [1652] = 1608, - [1653] = 358, - [1654] = 367, - [1655] = 1585, - [1656] = 343, - [1657] = 1587, - [1658] = 364, - [1659] = 365, - [1660] = 345, - [1661] = 1661, - [1662] = 344, - [1663] = 1663, - [1664] = 395, - [1665] = 1216, - [1666] = 364, - [1667] = 361, - [1668] = 345, - [1669] = 358, - [1670] = 357, - [1671] = 365, - [1672] = 356, - [1673] = 1574, - [1674] = 353, - [1675] = 367, - [1676] = 352, - [1677] = 370, - [1678] = 349, - [1679] = 351, - [1680] = 371, - [1681] = 354, - [1682] = 372, - [1683] = 343, - [1684] = 1574, - [1685] = 373, - [1686] = 1627, - [1687] = 817, - [1688] = 350, - [1689] = 369, - [1690] = 368, - [1691] = 366, - [1692] = 344, - [1693] = 347, - [1694] = 345, - [1695] = 345, - [1696] = 344, - [1697] = 343, - [1698] = 1587, - [1699] = 1585, - [1700] = 1608, - [1701] = 1609, - [1702] = 1621, - [1703] = 347, - [1704] = 1621, - [1705] = 1627, - [1706] = 344, - [1707] = 334, - [1708] = 335, - [1709] = 1709, - [1710] = 345, - [1711] = 1557, - [1712] = 352, - [1713] = 373, - [1714] = 1714, - [1715] = 1715, - [1716] = 1715, - [1717] = 1717, - [1718] = 1715, - [1719] = 1715, - [1720] = 353, - [1721] = 351, - [1722] = 373, - [1723] = 1715, - [1724] = 365, - [1725] = 1725, - [1726] = 1715, - [1727] = 356, - [1728] = 371, - [1729] = 343, - [1730] = 1715, - [1731] = 831, - [1732] = 1715, - [1733] = 357, - [1734] = 367, - [1735] = 1735, - [1736] = 1715, - [1737] = 1715, - [1738] = 358, - [1739] = 1715, - [1740] = 1740, - [1741] = 1709, - [1742] = 1742, - [1743] = 1715, - [1744] = 1744, - [1745] = 343, - [1746] = 361, - [1747] = 1747, - [1748] = 364, - [1749] = 1749, - [1750] = 1715, - [1751] = 1715, - [1752] = 1714, - [1753] = 1747, - [1754] = 1714, - [1755] = 1715, - [1756] = 818, - [1757] = 354, - [1758] = 817, - [1759] = 1715, - [1760] = 1715, - [1761] = 1735, - [1762] = 1715, - [1763] = 784, - [1764] = 1740, - [1765] = 809, - [1766] = 371, - [1767] = 351, - [1768] = 1715, - [1769] = 1717, - [1770] = 785, - [1771] = 747, - [1772] = 748, - [1773] = 347, - [1774] = 1742, - [1775] = 1715, - [1776] = 352, - [1777] = 1715, - [1778] = 345, - [1779] = 1742, - [1780] = 344, - [1781] = 1715, - [1782] = 353, - [1783] = 343, - [1784] = 365, - [1785] = 1725, - [1786] = 1735, - [1787] = 1747, - [1788] = 344, - [1789] = 356, - [1790] = 345, - [1791] = 367, - [1792] = 354, - [1793] = 345, - [1794] = 1794, - [1795] = 357, - [1796] = 354, - [1797] = 344, - [1798] = 1725, - [1799] = 347, - [1800] = 358, - [1801] = 1735, - [1802] = 1715, - [1803] = 1714, - [1804] = 370, - [1805] = 349, - [1806] = 1714, - [1807] = 361, - [1808] = 1747, - [1809] = 364, - [1810] = 356, - [1811] = 1747, - [1812] = 347, - [1813] = 350, - [1814] = 1714, - [1815] = 372, - [1816] = 373, - [1817] = 1717, - [1818] = 1715, - [1819] = 1740, - [1820] = 1715, - [1821] = 1715, - [1822] = 350, - [1823] = 397, - [1824] = 395, - [1825] = 1715, - [1826] = 792, - [1827] = 345, - [1828] = 397, - [1829] = 1715, - [1830] = 344, - [1831] = 1586, - [1832] = 369, - [1833] = 368, - [1834] = 372, - [1835] = 1715, - [1836] = 1725, - [1837] = 1715, - [1838] = 1715, - [1839] = 1839, - [1840] = 1735, - [1841] = 366, - [1842] = 369, - [1843] = 1715, - [1844] = 365, - [1845] = 368, - [1846] = 1846, - [1847] = 1735, - [1848] = 1848, - [1849] = 370, - [1850] = 1715, - [1851] = 367, - [1852] = 349, - [1853] = 371, - [1854] = 395, - [1855] = 1735, - [1856] = 351, - [1857] = 358, - [1858] = 1725, - [1859] = 1709, - [1860] = 1742, - [1861] = 1861, - [1862] = 1862, - [1863] = 1715, - [1864] = 370, - [1865] = 349, - [1866] = 1715, - [1867] = 350, - [1868] = 1735, - [1869] = 1715, - [1870] = 1747, - [1871] = 1871, - [1872] = 1715, - [1873] = 1715, - [1874] = 1715, - [1875] = 372, - [1876] = 373, - [1877] = 352, - [1878] = 784, - [1879] = 1715, - [1880] = 785, - [1881] = 364, - [1882] = 350, - [1883] = 397, - [1884] = 1714, - [1885] = 353, - [1886] = 1715, - [1887] = 1715, - [1888] = 1725, - [1889] = 1747, - [1890] = 365, - [1891] = 784, - [1892] = 369, - [1893] = 368, - [1894] = 785, - [1895] = 1742, - [1896] = 1715, - [1897] = 1715, - [1898] = 1714, - [1899] = 1899, - [1900] = 361, - [1901] = 366, - [1902] = 366, - [1903] = 367, - [1904] = 1715, - [1905] = 1715, - [1906] = 1747, - [1907] = 366, - [1908] = 368, - [1909] = 1715, - [1910] = 395, - [1911] = 1715, - [1912] = 1742, - [1913] = 1740, - [1914] = 1709, - [1915] = 372, - [1916] = 369, - [1917] = 1742, - [1918] = 343, - [1919] = 1725, - [1920] = 357, - [1921] = 1715, - [1922] = 1725, - [1923] = 1586, - [1924] = 1924, - [1925] = 1925, - [1926] = 344, - [1927] = 1715, - [1928] = 352, - [1929] = 1629, - [1930] = 350, - [1931] = 347, - [1932] = 345, - [1933] = 373, - [1934] = 372, - [1935] = 344, - [1936] = 369, - [1937] = 368, - [1938] = 366, - [1939] = 368, - [1940] = 366, - [1941] = 1941, - [1942] = 366, - [1943] = 369, - [1944] = 350, - [1945] = 1945, - [1946] = 349, - [1947] = 370, - [1948] = 1941, - [1949] = 368, - [1950] = 369, - [1951] = 343, - [1952] = 350, - [1953] = 367, - [1954] = 1941, - [1955] = 373, - [1956] = 372, - [1957] = 365, - [1958] = 349, - [1959] = 370, - [1960] = 364, - [1961] = 1617, - [1962] = 1661, - [1963] = 373, - [1964] = 372, - [1965] = 1663, - [1966] = 367, - [1967] = 1967, - [1968] = 1140, - [1969] = 365, - [1970] = 1003, - [1971] = 364, - [1972] = 1590, - [1973] = 1973, - [1974] = 1973, - [1975] = 358, - [1976] = 900, - [1977] = 356, - [1978] = 1623, - [1979] = 364, - [1980] = 1980, - [1981] = 361, - [1982] = 1973, - [1983] = 395, - [1984] = 358, - [1985] = 1967, - [1986] = 996, - [1987] = 357, - [1988] = 356, - [1989] = 1989, - [1990] = 1990, - [1991] = 974, - [1992] = 353, - [1993] = 395, - [1994] = 361, - [1995] = 349, - [1996] = 370, - [1997] = 335, - [1998] = 351, - [1999] = 371, - [2000] = 357, - [2001] = 334, - [2002] = 354, - [2003] = 1990, - [2004] = 1989, - [2005] = 354, - [2006] = 353, - [2007] = 367, - [2008] = 371, - [2009] = 397, - [2010] = 351, - [2011] = 352, - [2012] = 352, - [2013] = 353, - [2014] = 950, - [2015] = 351, - [2016] = 365, - [2017] = 371, - [2018] = 356, - [2019] = 397, - [2020] = 784, - [2021] = 785, - [2022] = 357, - [2023] = 1601, - [2024] = 358, - [2025] = 1601, - [2026] = 1633, - [2027] = 1617, - [2028] = 1973, - [2029] = 397, - [2030] = 1663, - [2031] = 361, - [2032] = 354, - [2033] = 1661, - [2034] = 1628, - [2035] = 1137, - [2036] = 1794, - [2037] = 2037, - [2038] = 1989, - [2039] = 364, - [2040] = 1749, - [2041] = 2041, - [2042] = 369, - [2043] = 351, - [2044] = 1839, - [2045] = 2045, - [2046] = 1899, - [2047] = 370, - [2048] = 349, - [2049] = 371, - [2050] = 1640, - [2051] = 1989, - [2052] = 2052, - [2053] = 900, - [2054] = 1990, - [2055] = 370, - [2056] = 2056, - [2057] = 1989, - [2058] = 1839, - [2059] = 1925, - [2060] = 1990, - [2061] = 1899, - [2062] = 2037, - [2063] = 2052, - [2064] = 1744, - [2065] = 1628, - [2066] = 1924, - [2067] = 2041, - [2068] = 1749, - [2069] = 395, - [2070] = 365, - [2071] = 1633, - [2072] = 365, - [2073] = 1623, - [2074] = 2074, - [2075] = 2056, - [2076] = 1199, - [2077] = 352, - [2078] = 1744, - [2079] = 2045, - [2080] = 1629, - [2081] = 395, - [2082] = 372, - [2083] = 373, - [2084] = 353, - [2085] = 2052, - [2086] = 372, - [2087] = 373, - [2088] = 1633, - [2089] = 334, - [2090] = 335, - [2091] = 1871, - [2092] = 2037, - [2093] = 1629, - [2094] = 1140, - [2095] = 2074, - [2096] = 1990, - [2097] = 1989, - [2098] = 366, - [2099] = 1846, - [2100] = 1967, - [2101] = 357, - [2102] = 1967, - [2103] = 367, - [2104] = 1862, - [2105] = 1291, - [2106] = 2037, - [2107] = 1967, - [2108] = 361, - [2109] = 334, - [2110] = 1861, - [2111] = 1640, - [2112] = 2045, - [2113] = 367, - [2114] = 397, - [2115] = 349, - [2116] = 2116, - [2117] = 1623, - [2118] = 1103, - [2119] = 350, - [2120] = 2037, - [2121] = 335, - [2122] = 1990, - [2123] = 397, - [2124] = 1194, - [2125] = 1989, - [2126] = 354, - [2127] = 350, - [2128] = 2037, - [2129] = 2052, - [2130] = 1990, - [2131] = 1628, - [2132] = 368, - [2133] = 1967, - [2134] = 1140, - [2135] = 2037, - [2136] = 356, - [2137] = 2116, - [2138] = 358, - [2139] = 2037, - [2140] = 1967, - [2141] = 366, - [2142] = 395, - [2143] = 2074, - [2144] = 2056, - [2145] = 1848, - [2146] = 369, - [2147] = 368, - [2148] = 2148, - [2149] = 1967, - [2150] = 397, - [2151] = 335, - [2152] = 2152, - [2153] = 2148, - [2154] = 1216, - [2155] = 2155, - [2156] = 395, - [2157] = 2157, - [2158] = 2157, - [2159] = 335, - [2160] = 343, - [2161] = 334, - [2162] = 334, - [2163] = 1990, - [2164] = 334, - [2165] = 2165, - [2166] = 334, - [2167] = 335, - [2168] = 2148, - [2169] = 1194, - [2170] = 1137, - [2171] = 2165, - [2172] = 397, - [2173] = 2173, - [2174] = 2152, - [2175] = 1291, - [2176] = 397, - [2177] = 1199, - [2178] = 1140, - [2179] = 344, - [2180] = 345, - [2181] = 1989, - [2182] = 2152, - [2183] = 2157, - [2184] = 2165, - [2185] = 347, - [2186] = 335, - [2187] = 2187, - [2188] = 369, - [2189] = 372, - [2190] = 2190, - [2191] = 2191, - [2192] = 2192, - [2193] = 2193, - [2194] = 350, - [2195] = 2195, - [2196] = 471, - [2197] = 364, - [2198] = 335, - [2199] = 334, - [2200] = 373, - [2201] = 2201, - [2202] = 2191, - [2203] = 368, - [2204] = 2204, - [2205] = 349, - [2206] = 370, - [2207] = 2193, - [2208] = 2190, - [2209] = 361, - [2210] = 2204, - [2211] = 2211, - [2212] = 334, - [2213] = 397, - [2214] = 2214, - [2215] = 2190, - [2216] = 335, - [2217] = 366, - [2218] = 335, - [2219] = 334, - [2220] = 2193, - [2221] = 335, - [2222] = 2192, - [2223] = 2214, - [2224] = 358, - [2225] = 367, - [2226] = 334, - [2227] = 2204, - [2228] = 357, - [2229] = 356, - [2230] = 2191, - [2231] = 365, - [2232] = 2195, - [2233] = 2192, - [2234] = 353, - [2235] = 352, - [2236] = 2214, - [2237] = 2195, - [2238] = 354, - [2239] = 371, - [2240] = 351, - [2241] = 2241, - [2242] = 2242, - [2243] = 2243, - [2244] = 2244, - [2245] = 356, - [2246] = 2246, - [2247] = 358, - [2248] = 334, - [2249] = 364, - [2250] = 335, - [2251] = 2243, - [2252] = 2243, - [2253] = 2243, - [2254] = 366, - [2255] = 349, - [2256] = 370, - [2257] = 368, - [2258] = 369, - [2259] = 365, - [2260] = 2260, - [2261] = 2243, - [2262] = 2262, - [2263] = 2243, - [2264] = 2243, - [2265] = 2265, - [2266] = 2243, - [2267] = 2243, - [2268] = 2268, - [2269] = 2269, - [2270] = 350, - [2271] = 2243, - [2272] = 2243, - [2273] = 2243, - [2274] = 373, - [2275] = 372, - [2276] = 2276, - [2277] = 2277, - [2278] = 367, - [2279] = 2243, - [2280] = 335, - [2281] = 334, - [2282] = 2243, - [2283] = 2243, - [2284] = 2243, - [2285] = 2243, - [2286] = 2243, - [2287] = 2243, - [2288] = 2243, - [2289] = 2289, - [2290] = 2243, - [2291] = 395, - [2292] = 2292, - [2293] = 2243, - [2294] = 2243, - [2295] = 2295, - [2296] = 2201, - [2297] = 1199, - [2298] = 1194, - [2299] = 397, - [2300] = 2201, - [2301] = 2260, - [2302] = 2302, - [2303] = 2269, - [2304] = 358, - [2305] = 364, - [2306] = 2302, - [2307] = 2307, - [2308] = 2302, - [2309] = 335, - [2310] = 471, - [2311] = 358, - [2312] = 2307, - [2313] = 2302, - [2314] = 334, - [2315] = 2292, - [2316] = 369, - [2317] = 2307, - [2318] = 334, - [2319] = 2244, - [2320] = 364, - [2321] = 2307, - [2322] = 2241, - [2323] = 2302, - [2324] = 2302, - [2325] = 2307, - [2326] = 335, - [2327] = 2302, - [2328] = 2307, - [2329] = 2307, - [2330] = 2302, - [2331] = 365, - [2332] = 2241, - [2333] = 367, - [2334] = 2307, - [2335] = 2302, - [2336] = 748, - [2337] = 370, - [2338] = 356, - [2339] = 2246, - [2340] = 2244, - [2341] = 2302, - [2342] = 370, - [2343] = 356, - [2344] = 349, - [2345] = 747, - [2346] = 2292, - [2347] = 2302, - [2348] = 2307, - [2349] = 471, - [2350] = 2307, - [2351] = 349, - [2352] = 365, - [2353] = 372, - [2354] = 373, - [2355] = 372, - [2356] = 2302, - [2357] = 2307, - [2358] = 366, - [2359] = 367, - [2360] = 2246, - [2361] = 373, - [2362] = 350, - [2363] = 785, - [2364] = 2302, - [2365] = 2307, - [2366] = 369, - [2367] = 368, - [2368] = 784, - [2369] = 366, - [2370] = 2307, - [2371] = 2269, - [2372] = 2302, - [2373] = 368, - [2374] = 2307, - [2375] = 2307, - [2376] = 344, - [2377] = 345, - [2378] = 468, - [2379] = 2302, - [2380] = 469, - [2381] = 350, - [2382] = 343, - [2383] = 2307, - [2384] = 347, - [2385] = 2260, - [2386] = 2386, - [2387] = 334, - [2388] = 335, - [2389] = 354, - [2390] = 334, - [2391] = 2391, - [2392] = 2391, - [2393] = 2393, - [2394] = 2386, - [2395] = 352, - [2396] = 2393, - [2397] = 2386, - [2398] = 2398, - [2399] = 353, - [2400] = 2393, - [2401] = 335, - [2402] = 2391, - [2403] = 2386, - [2404] = 2386, - [2405] = 2393, - [2406] = 356, - [2407] = 2393, - [2408] = 2391, - [2409] = 357, - [2410] = 2410, - [2411] = 2393, - [2412] = 358, - [2413] = 361, - [2414] = 364, - [2415] = 2386, - [2416] = 2393, - [2417] = 2417, - [2418] = 2386, - [2419] = 2393, - [2420] = 351, - [2421] = 2386, - [2422] = 2393, - [2423] = 2417, - [2424] = 2386, - [2425] = 365, - [2426] = 2426, - [2427] = 2393, - [2428] = 367, - [2429] = 2391, - [2430] = 2393, - [2431] = 2386, - [2432] = 2393, - [2433] = 2386, - [2434] = 2386, - [2435] = 2393, - [2436] = 2386, - [2437] = 2417, - [2438] = 370, - [2439] = 2391, - [2440] = 349, - [2441] = 2386, - [2442] = 2393, - [2443] = 371, - [2444] = 372, - [2445] = 335, - [2446] = 373, - [2447] = 2391, - [2448] = 350, - [2449] = 2386, - [2450] = 334, - [2451] = 2393, - [2452] = 2393, - [2453] = 2386, - [2454] = 369, - [2455] = 368, - [2456] = 335, - [2457] = 334, - [2458] = 334, - [2459] = 366, - [2460] = 335, - [2461] = 2393, - [2462] = 2462, - [2463] = 2386, - [2464] = 2464, - [2465] = 2386, - [2466] = 2393, - [2467] = 2386, - [2468] = 2393, - [2469] = 2469, - [2470] = 2469, - [2471] = 2471, - [2472] = 2472, - [2473] = 2473, - [2474] = 2469, - [2475] = 2471, - [2476] = 2471, - [2477] = 2469, - [2478] = 2478, - [2479] = 2479, - [2480] = 335, - [2481] = 334, - [2482] = 2469, - [2483] = 900, - [2484] = 2471, - [2485] = 2469, - [2486] = 2471, - [2487] = 2472, - [2488] = 2473, - [2489] = 2469, - [2490] = 2471, - [2491] = 2471, - [2492] = 2479, - [2493] = 2478, - [2494] = 2469, - [2495] = 1140, - [2496] = 2472, - [2497] = 2479, - [2498] = 2471, - [2499] = 2478, - [2500] = 2479, - [2501] = 2478, - [2502] = 395, - [2503] = 2469, - [2504] = 2473, - [2505] = 2471, - [2506] = 2506, - [2507] = 2507, - [2508] = 2506, - [2509] = 2509, - [2510] = 397, - [2511] = 2509, - [2512] = 2507, - [2513] = 2507, - [2514] = 2506, - [2515] = 2507, - [2516] = 2516, - [2517] = 2509, - [2518] = 2506, - [2519] = 2507, - [2520] = 2507, - [2521] = 2507, - [2522] = 2506, - [2523] = 2506, - [2524] = 2506, - [2525] = 2509, - [2526] = 2509, - [2527] = 2506, - [2528] = 2507, - [2529] = 2506, - [2530] = 1137, - [2531] = 2506, - [2532] = 2507, - [2533] = 2506, - [2534] = 2509, - [2535] = 2507, - [2536] = 2509, - [2537] = 2506, - [2538] = 2506, - [2539] = 2507, - [2540] = 2507, - [2541] = 2506, - [2542] = 2507, - [2543] = 2506, - [2544] = 2544, - [2545] = 2507, - [2546] = 2506, - [2547] = 2509, - [2548] = 2507, - [2549] = 2509, - [2550] = 2506, - [2551] = 2507, - [2552] = 2506, - [2553] = 2506, - [2554] = 2507, - [2555] = 2507, - [2556] = 2506, - [2557] = 2509, - [2558] = 2509, - [2559] = 2506, - [2560] = 2506, - [2561] = 2507, - [2562] = 2509, - [2563] = 2506, - [2564] = 2507, - [2565] = 2506, - [2566] = 2507, - [2567] = 2506, - [2568] = 2507, - [2569] = 2507, - [2570] = 2507, - [2571] = 2506, - [2572] = 2506, - [2573] = 2507, - [2574] = 2506, - [2575] = 2507, - [2576] = 2509, - [2577] = 2506, - [2578] = 2507, - [2579] = 2507, - [2580] = 2507, - [2581] = 2506, - [2582] = 2506, - [2583] = 2507, - [2584] = 2509, - [2585] = 2509, - [2586] = 2507, - [2587] = 2507, - [2588] = 2507, - [2589] = 2506, - [2590] = 2509, - [2591] = 2506, - [2592] = 2509, - [2593] = 2509, - [2594] = 2507, - [2595] = 2509, - [2596] = 2506, - [2597] = 2506, - [2598] = 2506, - [2599] = 2506, - [2600] = 2509, - [2601] = 2509, - [2602] = 2507, - [2603] = 343, - [2604] = 2506, - [2605] = 1199, - [2606] = 2509, - [2607] = 2506, - [2608] = 2507, - [2609] = 2506, - [2610] = 2509, - [2611] = 2509, - [2612] = 1194, - [2613] = 2507, - [2614] = 2506, - [2615] = 2509, - [2616] = 2507, - [2617] = 2506, - [2618] = 2507, - [2619] = 2509, - [2620] = 2506, - [2621] = 2509, - [2622] = 2507, - [2623] = 2507, - [2624] = 2506, - [2625] = 2509, - [2626] = 2507, - [2627] = 2509, - [2628] = 2509, - [2629] = 2507, - [2630] = 2509, - [2631] = 2507, - [2632] = 2506, - [2633] = 2506, - [2634] = 2507, - [2635] = 2506, - [2636] = 2509, - [2637] = 2507, - [2638] = 2506, - [2639] = 2506, - [2640] = 2507, - [2641] = 2506, - [2642] = 2507, - [2643] = 2509, - [2644] = 2506, - [2645] = 2645, - [2646] = 2507, - [2647] = 2509, - [2648] = 2506, - [2649] = 2507, - [2650] = 2507, - [2651] = 2507, - [2652] = 2507, - [2653] = 2509, - [2654] = 2506, - [2655] = 2506, - [2656] = 2509, - [2657] = 2506, - [2658] = 2506, - [2659] = 2509, - [2660] = 2507, - [2661] = 2507, - [2662] = 2506, - [2663] = 2507, - [2664] = 2507, - [2665] = 2507, - [2666] = 2506, - [2667] = 2507, - [2668] = 2506, - [2669] = 2507, - [2670] = 2509, - [2671] = 2506, - [2672] = 2509, - [2673] = 2506, - [2674] = 2507, - [2675] = 2506, - [2676] = 2507, - [2677] = 2509, - [2678] = 2509, - [2679] = 2506, - [2680] = 2507, - [2681] = 2507, - [2682] = 2506, - [2683] = 2507, - [2684] = 2506, - [2685] = 2509, - [2686] = 2506, - [2687] = 2507, - [2688] = 2507, - [2689] = 2509, - [2690] = 2507, - [2691] = 2506, - [2692] = 2507, - [2693] = 2509, - [2694] = 2506, - [2695] = 2506, - [2696] = 2507, - [2697] = 2506, - [2698] = 2507, - [2699] = 2509, - [2700] = 2506, - [2701] = 2507, - [2702] = 2509, - [2703] = 2506, - [2704] = 2509, - [2705] = 2509, - [2706] = 2506, - [2707] = 2507, - [2708] = 2507, - [2709] = 2506, - [2710] = 2710, - [2711] = 2711, - [2712] = 347, - [2713] = 343, - [2714] = 2714, - [2715] = 2715, - [2716] = 2716, - [2717] = 747, - [2718] = 748, - [2719] = 2719, - [2720] = 2720, - [2721] = 343, - [2722] = 2722, - [2723] = 347, - [2724] = 345, - [2725] = 344, - [2726] = 347, - [2727] = 2716, - [2728] = 356, - [2729] = 353, - [2730] = 354, - [2731] = 371, - [2732] = 350, - [2733] = 343, - [2734] = 369, - [2735] = 368, - [2736] = 351, - [2737] = 352, - [2738] = 395, - [2739] = 366, - [2740] = 368, - [2741] = 366, - [2742] = 343, - [2743] = 358, - [2744] = 345, - [2745] = 353, - [2746] = 365, - [2747] = 373, - [2748] = 2711, - [2749] = 2722, - [2750] = 2719, - [2751] = 372, - [2752] = 2714, - [2753] = 369, - [2754] = 357, - [2755] = 350, - [2756] = 900, - [2757] = 361, - [2758] = 395, - [2759] = 2710, - [2760] = 349, - [2761] = 370, - [2762] = 347, - [2763] = 352, - [2764] = 357, - [2765] = 2765, - [2766] = 2766, - [2767] = 367, - [2768] = 356, - [2769] = 367, - [2770] = 364, - [2771] = 358, - [2772] = 373, - [2773] = 343, - [2774] = 361, - [2775] = 372, - [2776] = 343, - [2777] = 344, - [2778] = 365, - [2779] = 2779, - [2780] = 2720, - [2781] = 354, - [2782] = 370, - [2783] = 2715, - [2784] = 364, - [2785] = 349, - [2786] = 747, - [2787] = 748, - [2788] = 900, - [2789] = 371, - [2790] = 344, - [2791] = 2791, - [2792] = 345, - [2793] = 351, - [2794] = 747, - [2795] = 343, - [2796] = 2719, - [2797] = 2715, - [2798] = 2716, - [2799] = 2799, - [2800] = 2720, - [2801] = 2801, - [2802] = 2802, - [2803] = 2803, - [2804] = 748, - [2805] = 748, - [2806] = 365, - [2807] = 2711, - [2808] = 367, - [2809] = 2715, - [2810] = 367, - [2811] = 784, - [2812] = 785, - [2813] = 2813, - [2814] = 2719, - [2815] = 357, - [2816] = 344, - [2817] = 370, - [2818] = 397, - [2819] = 2722, - [2820] = 345, - [2821] = 2716, - [2822] = 357, - [2823] = 349, - [2824] = 361, - [2825] = 2710, - [2826] = 343, - [2827] = 373, - [2828] = 372, - [2829] = 2829, - [2830] = 343, - [2831] = 344, - [2832] = 345, - [2833] = 2711, - [2834] = 2834, - [2835] = 344, - [2836] = 345, - [2837] = 364, - [2838] = 356, - [2839] = 372, - [2840] = 349, - [2841] = 2841, - [2842] = 370, - [2843] = 373, - [2844] = 371, - [2845] = 2710, - [2846] = 353, - [2847] = 2841, - [2848] = 343, - [2849] = 358, - [2850] = 361, - [2851] = 2711, - [2852] = 352, - [2853] = 350, - [2854] = 2720, - [2855] = 2716, - [2856] = 345, - [2857] = 344, - [2858] = 365, - [2859] = 2859, - [2860] = 344, - [2861] = 2714, - [2862] = 350, - [2863] = 369, - [2864] = 2813, - [2865] = 2865, - [2866] = 347, - [2867] = 368, - [2868] = 2714, - [2869] = 748, - [2870] = 747, - [2871] = 2710, - [2872] = 2872, - [2873] = 2715, - [2874] = 2719, - [2875] = 351, - [2876] = 395, - [2877] = 369, - [2878] = 351, - [2879] = 366, - [2880] = 368, - [2881] = 397, - [2882] = 2882, - [2883] = 747, - [2884] = 2779, - [2885] = 2714, - [2886] = 2886, - [2887] = 364, - [2888] = 371, - [2889] = 354, - [2890] = 2791, - [2891] = 345, - [2892] = 2722, - [2893] = 353, - [2894] = 2765, - [2895] = 395, - [2896] = 356, - [2897] = 343, - [2898] = 366, - [2899] = 2766, - [2900] = 2722, - [2901] = 354, - [2902] = 2720, - [2903] = 352, - [2904] = 358, - [2905] = 2719, - [2906] = 345, - [2907] = 397, - [2908] = 365, - [2909] = 2909, - [2910] = 1199, - [2911] = 367, - [2912] = 2912, - [2913] = 345, - [2914] = 2914, - [2915] = 344, - [2916] = 344, - [2917] = 343, - [2918] = 345, - [2919] = 2765, - [2920] = 2765, - [2921] = 2766, - [2922] = 370, - [2923] = 349, - [2924] = 2791, - [2925] = 2714, - [2926] = 364, - [2927] = 2779, - [2928] = 371, - [2929] = 351, - [2930] = 344, - [2931] = 397, - [2932] = 2766, - [2933] = 358, - [2934] = 2914, - [2935] = 2791, - [2936] = 2909, - [2937] = 2937, - [2938] = 372, - [2939] = 373, - [2940] = 2779, - [2941] = 2715, - [2942] = 2942, - [2943] = 2943, - [2944] = 2944, - [2945] = 2710, - [2946] = 356, - [2947] = 2947, - [2948] = 2937, - [2949] = 1199, - [2950] = 2950, - [2951] = 1137, - [2952] = 354, - [2953] = 2720, - [2954] = 2954, - [2955] = 747, - [2956] = 2909, - [2957] = 2943, - [2958] = 350, - [2959] = 2912, - [2960] = 345, - [2961] = 1194, - [2962] = 361, - [2963] = 2944, - [2964] = 366, - [2965] = 344, - [2966] = 2791, - [2967] = 2937, - [2968] = 1194, - [2969] = 357, - [2970] = 2886, - [2971] = 2765, - [2972] = 2766, - [2973] = 748, - [2974] = 2799, - [2975] = 1137, - [2976] = 2943, - [2977] = 2722, - [2978] = 2944, - [2979] = 353, - [2980] = 352, - [2981] = 368, - [2982] = 369, - [2983] = 2779, - [2984] = 2984, - [2985] = 2985, - [2986] = 2986, - [2987] = 343, - [2988] = 2988, - [2989] = 2791, - [2990] = 2990, - [2991] = 2991, - [2992] = 2992, - [2993] = 2993, - [2994] = 2985, - [2995] = 2995, - [2996] = 2996, - [2997] = 2997, - [2998] = 2799, - [2999] = 2999, - [3000] = 2986, - [3001] = 2992, - [3002] = 3002, - [3003] = 3003, - [3004] = 3004, - [3005] = 3005, - [3006] = 2947, - [3007] = 2950, - [3008] = 2993, - [3009] = 3009, - [3010] = 2942, - [3011] = 3011, - [3012] = 3012, - [3013] = 3013, - [3014] = 3014, - [3015] = 3015, - [3016] = 344, - [3017] = 345, - [3018] = 3015, - [3019] = 3019, - [3020] = 344, - [3021] = 3003, - [3022] = 3022, - [3023] = 3023, - [3024] = 345, - [3025] = 3025, - [3026] = 3026, - [3027] = 3027, - [3028] = 2990, - [3029] = 3029, - [3030] = 2766, - [3031] = 3031, - [3032] = 2886, - [3033] = 3033, - [3034] = 2886, - [3035] = 3022, - [3036] = 3025, - [3037] = 2991, - [3038] = 3038, - [3039] = 3039, - [3040] = 3040, - [3041] = 3041, - [3042] = 3042, - [3043] = 3043, - [3044] = 3044, - [3045] = 3041, - [3046] = 2997, - [3047] = 3047, - [3048] = 3048, - [3049] = 2799, - [3050] = 3050, - [3051] = 3013, - [3052] = 3039, - [3053] = 3012, - [3054] = 2995, - [3055] = 3014, - [3056] = 3056, - [3057] = 3004, - [3058] = 3044, - [3059] = 2765, - [3060] = 2779, - [3061] = 3011, - [3062] = 3040, - [3063] = 3002, - [3064] = 2988, - [3065] = 3065, - [3066] = 3066, - [3067] = 3027, - [3068] = 3019, - [3069] = 3043, - [3070] = 3009, - [3071] = 3031, - [3072] = 3033, - [3073] = 2996, - [3074] = 2984, - [3075] = 3038, - [3076] = 3048, - [3077] = 395, - [3078] = 3078, - [3079] = 3042, - [3080] = 3080, - [3081] = 3050, - [3082] = 3066, - [3083] = 2799, - [3084] = 3056, - [3085] = 3023, - [3086] = 3080, - [3087] = 3026, - [3088] = 3065, - [3089] = 3078, - [3090] = 1140, - [3091] = 2886, - [3092] = 3029, - [3093] = 347, - [3094] = 345, - [3095] = 352, - [3096] = 344, - [3097] = 343, - [3098] = 785, - [3099] = 2886, - [3100] = 356, - [3101] = 2799, - [3102] = 784, - [3103] = 345, - [3104] = 367, - [3105] = 397, - [3106] = 3106, - [3107] = 366, - [3108] = 3106, - [3109] = 371, - [3110] = 2950, - [3111] = 2942, - [3112] = 370, - [3113] = 349, - [3114] = 347, - [3115] = 368, - [3116] = 343, - [3117] = 369, - [3118] = 351, - [3119] = 2947, - [3120] = 344, - [3121] = 357, - [3122] = 365, - [3123] = 2947, - [3124] = 2950, - [3125] = 354, - [3126] = 3126, - [3127] = 3126, - [3128] = 3106, - [3129] = 2942, - [3130] = 353, - [3131] = 3126, - [3132] = 364, - [3133] = 350, - [3134] = 2942, - [3135] = 2950, - [3136] = 343, - [3137] = 358, - [3138] = 785, - [3139] = 784, - [3140] = 373, - [3141] = 372, - [3142] = 361, - [3143] = 2947, - [3144] = 3144, - [3145] = 3144, - [3146] = 3146, - [3147] = 3144, - [3148] = 2715, - [3149] = 3149, - [3150] = 353, - [3151] = 747, - [3152] = 3144, - [3153] = 356, - [3154] = 3154, - [3155] = 3155, - [3156] = 3156, - [3157] = 2942, - [3158] = 3158, - [3159] = 3144, - [3160] = 3160, - [3161] = 352, - [3162] = 2950, - [3163] = 3163, - [3164] = 3144, - [3165] = 3165, - [3166] = 3144, - [3167] = 357, - [3168] = 3168, - [3169] = 2722, - [3170] = 358, - [3171] = 361, - [3172] = 3144, - [3173] = 3144, - [3174] = 351, - [3175] = 3175, - [3176] = 3144, - [3177] = 3177, - [3178] = 371, - [3179] = 2947, - [3180] = 364, - [3181] = 3144, - [3182] = 3144, - [3183] = 354, - [3184] = 3144, - [3185] = 3144, - [3186] = 748, - [3187] = 3144, - [3188] = 3188, - [3189] = 3189, - [3190] = 3190, - [3191] = 3144, - [3192] = 3144, - [3193] = 3144, - [3194] = 3144, - [3195] = 3195, - [3196] = 3144, - [3197] = 3144, - [3198] = 3144, - [3199] = 3199, - [3200] = 3144, - [3201] = 3144, - [3202] = 3202, - [3203] = 3203, - [3204] = 3204, - [3205] = 3144, - [3206] = 370, - [3207] = 3144, - [3208] = 3144, - [3209] = 367, - [3210] = 3203, - [3211] = 3211, - [3212] = 349, - [3213] = 3144, - [3214] = 395, - [3215] = 2720, - [3216] = 3144, - [3217] = 3217, - [3218] = 3218, - [3219] = 3144, - [3220] = 3220, - [3221] = 2720, - [3222] = 372, - [3223] = 3144, - [3224] = 3224, - [3225] = 2719, - [3226] = 2715, - [3227] = 373, - [3228] = 3144, - [3229] = 350, - [3230] = 365, - [3231] = 369, - [3232] = 3144, - [3233] = 343, - [3234] = 344, - [3235] = 368, - [3236] = 345, - [3237] = 3144, - [3238] = 3238, - [3239] = 343, - [3240] = 3144, - [3241] = 3241, - [3242] = 3146, - [3243] = 3144, - [3244] = 3144, - [3245] = 366, - [3246] = 3144, - [3247] = 3144, - [3248] = 3248, - [3249] = 3144, - [3250] = 3250, - [3251] = 3251, - [3252] = 3144, - [3253] = 3253, - [3254] = 3254, - [3255] = 3163, - [3256] = 3256, - [3257] = 3154, - [3258] = 3144, - [3259] = 3144, - [3260] = 343, - [3261] = 3144, - [3262] = 2714, - [3263] = 3144, - [3264] = 3156, - [3265] = 3203, - [3266] = 3144, - [3267] = 3267, - [3268] = 3144, - [3269] = 2710, - [3270] = 3248, - [3271] = 3144, - [3272] = 3144, - [3273] = 3144, - [3274] = 3220, - [3275] = 3275, - [3276] = 3276, - [3277] = 3275, - [3278] = 3278, - [3279] = 3275, - [3280] = 3275, - [3281] = 3275, - [3282] = 3282, - [3283] = 3278, - [3284] = 3278, - [3285] = 3285, - [3286] = 347, - [3287] = 3287, - [3288] = 3275, - [3289] = 2722, - [3290] = 3290, - [3291] = 3275, - [3292] = 3292, - [3293] = 3278, - [3294] = 2791, - [3295] = 3275, - [3296] = 3278, - [3297] = 3275, - [3298] = 3278, - [3299] = 3299, - [3300] = 3300, - [3301] = 3278, - [3302] = 3302, - [3303] = 3303, - [3304] = 3304, - [3305] = 3275, - [3306] = 3306, - [3307] = 3278, - [3308] = 3278, - [3309] = 3275, - [3310] = 3310, - [3311] = 3275, - [3312] = 3278, - [3313] = 3313, - [3314] = 3314, - [3315] = 3278, - [3316] = 3316, - [3317] = 3275, - [3318] = 3318, - [3319] = 3319, - [3320] = 3320, - [3321] = 3275, - [3322] = 3278, - [3323] = 3278, - [3324] = 3278, - [3325] = 3275, - [3326] = 3278, - [3327] = 3275, - [3328] = 3328, - [3329] = 3278, - [3330] = 2766, - [3331] = 3275, - [3332] = 345, - [3333] = 3278, - [3334] = 344, - [3335] = 3275, - [3336] = 3336, - [3337] = 3337, - [3338] = 3275, - [3339] = 3275, - [3340] = 3278, - [3341] = 3278, - [3342] = 3275, - [3343] = 3275, - [3344] = 3344, - [3345] = 2720, - [3346] = 3346, - [3347] = 3278, - [3348] = 3275, - [3349] = 3275, - [3350] = 3278, - [3351] = 3278, - [3352] = 3278, - [3353] = 3278, - [3354] = 3275, - [3355] = 1140, - [3356] = 3278, - [3357] = 3278, - [3358] = 3275, - [3359] = 3278, - [3360] = 2719, - [3361] = 3275, - [3362] = 3362, - [3363] = 3363, - [3364] = 343, - [3365] = 3365, - [3366] = 3275, - [3367] = 3278, - [3368] = 2710, - [3369] = 3275, - [3370] = 3302, - [3371] = 2765, - [3372] = 3275, - [3373] = 3373, - [3374] = 3374, - [3375] = 3278, - [3376] = 3278, - [3377] = 3275, - [3378] = 3275, - [3379] = 3379, - [3380] = 3278, - [3381] = 3278, - [3382] = 2765, - [3383] = 2766, - [3384] = 3275, - [3385] = 3385, - [3386] = 2779, - [3387] = 3387, - [3388] = 3388, - [3389] = 3278, - [3390] = 3278, - [3391] = 3391, - [3392] = 3278, - [3393] = 3275, - [3394] = 3275, - [3395] = 3275, - [3396] = 3396, - [3397] = 3397, - [3398] = 3398, - [3399] = 3399, - [3400] = 3400, - [3401] = 3278, - [3402] = 3278, - [3403] = 3275, - [3404] = 3404, - [3405] = 3275, - [3406] = 2714, - [3407] = 3407, - [3408] = 3408, - [3409] = 3278, - [3410] = 1194, - [3411] = 3275, - [3412] = 347, - [3413] = 3275, - [3414] = 3278, - [3415] = 3415, - [3416] = 2791, - [3417] = 3417, - [3418] = 2779, - [3419] = 3278, - [3420] = 1199, - [3421] = 3275, - [3422] = 3275, - [3423] = 748, - [3424] = 3278, - [3425] = 3278, - [3426] = 3426, - [3427] = 3278, - [3428] = 3278, - [3429] = 3429, - [3430] = 747, - [3431] = 3275, - [3432] = 395, - [3433] = 345, - [3434] = 3275, - [3435] = 3278, - [3436] = 344, - [3437] = 3437, - [3438] = 3275, - [3439] = 3278, - [3440] = 3275, - [3441] = 3441, - [3442] = 3442, - [3443] = 345, - [3444] = 3278, - [3445] = 3278, - [3446] = 3275, - [3447] = 3447, - [3448] = 3448, - [3449] = 3449, - [3450] = 3275, - [3451] = 2715, - [3452] = 3278, - [3453] = 3275, - [3454] = 3278, - [3455] = 3455, - [3456] = 3275, - [3457] = 3457, - [3458] = 3458, - [3459] = 3278, - [3460] = 3460, - [3461] = 3461, - [3462] = 3275, - [3463] = 3463, - [3464] = 3464, - [3465] = 344, - [3466] = 3278, - [3467] = 3275, - [3468] = 3468, - [3469] = 3278, - [3470] = 3275, - [3471] = 397, - [3472] = 3275, - [3473] = 3473, - [3474] = 3275, - [3475] = 3475, - [3476] = 3278, - [3477] = 3278, - [3478] = 3478, - [3479] = 3278, - [3480] = 3480, - [3481] = 3275, - [3482] = 3482, - [3483] = 365, - [3484] = 368, - [3485] = 2841, - [3486] = 357, - [3487] = 2799, - [3488] = 2886, - [3489] = 367, - [3490] = 345, - [3491] = 352, - [3492] = 2765, - [3493] = 364, - [3494] = 2766, - [3495] = 344, - [3496] = 365, - [3497] = 395, - [3498] = 353, - [3499] = 2779, - [3500] = 356, - [3501] = 2791, - [3502] = 395, - [3503] = 397, - [3504] = 361, - [3505] = 351, - [3506] = 370, - [3507] = 2799, - [3508] = 351, - [3509] = 367, - [3510] = 347, - [3511] = 900, - [3512] = 353, - [3513] = 364, - [3514] = 358, - [3515] = 350, - [3516] = 2813, - [3517] = 371, - [3518] = 372, - [3519] = 373, - [3520] = 356, - [3521] = 354, - [3522] = 350, - [3523] = 366, - [3524] = 369, - [3525] = 357, - [3526] = 361, - [3527] = 370, - [3528] = 349, - [3529] = 349, - [3530] = 372, - [3531] = 366, - [3532] = 373, - [3533] = 2886, - [3534] = 369, - [3535] = 354, - [3536] = 352, - [3537] = 368, - [3538] = 358, - [3539] = 371, - [3540] = 354, - [3541] = 367, - [3542] = 364, - [3543] = 372, - [3544] = 353, - [3545] = 358, - [3546] = 2841, - [3547] = 335, - [3548] = 357, - [3549] = 356, - [3550] = 373, - [3551] = 395, - [3552] = 371, - [3553] = 397, - [3554] = 334, - [3555] = 365, - [3556] = 361, - [3557] = 352, - [3558] = 2886, - [3559] = 397, - [3560] = 2813, - [3561] = 2942, - [3562] = 369, - [3563] = 349, - [3564] = 366, - [3565] = 351, - [3566] = 2950, - [3567] = 2947, - [3568] = 2799, - [3569] = 370, - [3570] = 350, - [3571] = 368, - [3572] = 1137, - [3573] = 3573, - [3574] = 1194, - [3575] = 3014, - [3576] = 2947, - [3577] = 3023, - [3578] = 1199, - [3579] = 3025, - [3580] = 397, - [3581] = 3012, - [3582] = 2950, - [3583] = 2996, - [3584] = 3022, - [3585] = 3004, - [3586] = 2942, - [3587] = 3043, - [3588] = 3066, - [3589] = 3029, - [3590] = 3050, - [3591] = 3033, - [3592] = 3027, - [3593] = 3015, - [3594] = 3080, - [3595] = 3042, - [3596] = 3002, - [3597] = 3022, - [3598] = 3023, - [3599] = 3025, - [3600] = 2996, - [3601] = 3014, - [3602] = 3004, - [3603] = 3043, - [3604] = 3012, - [3605] = 2993, - [3606] = 2992, - [3607] = 3041, - [3608] = 2997, - [3609] = 3009, - [3610] = 3044, - [3611] = 2985, - [3612] = 3011, - [3613] = 2995, - [3614] = 3065, - [3615] = 3056, - [3616] = 3019, - [3617] = 3078, - [3618] = 3031, - [3619] = 3039, - [3620] = 2986, - [3621] = 2991, - [3622] = 2988, - [3623] = 3026, - [3624] = 3013, - [3625] = 2990, - [3626] = 3038, - [3627] = 3048, - [3628] = 3040, - [3629] = 2984, - [3630] = 3003, - [3631] = 335, - [3632] = 334, - [3633] = 334, - [3634] = 335, - [3635] = 3635, - [3636] = 3635, - [3637] = 3637, - [3638] = 3637, - [3639] = 3637, - [3640] = 3635, - [3641] = 3635, - [3642] = 3635, - [3643] = 3637, - [3644] = 3637, - [3645] = 3637, - [3646] = 3635, - [3647] = 3635, - [3648] = 3637, - [3649] = 3637, - [3650] = 3635, - [3651] = 3637, - [3652] = 3635, - [3653] = 3635, - [3654] = 3635, - [3655] = 3637, - [3656] = 3635, - [3657] = 3637, - [3658] = 3635, - [3659] = 3635, - [3660] = 3637, - [3661] = 3637, - [3662] = 3635, - [3663] = 3637, - [3664] = 3637, - [3665] = 3635, - [3666] = 3637, - [3667] = 3635, - [3668] = 3635, - [3669] = 3669, - [3670] = 3637, - [3671] = 3637, - [3672] = 3637, - [3673] = 3637, - [3674] = 3635, - [3675] = 3635, - [3676] = 3637, - [3677] = 3635, - [3678] = 3637, - [3679] = 3635, - [3680] = 3635, - [3681] = 3635, - [3682] = 3637, - [3683] = 3635, - [3684] = 3637, - [3685] = 3635, - [3686] = 3635, - [3687] = 3635, - [3688] = 3637, - [3689] = 3635, - [3690] = 3690, - [3691] = 3690, - [3692] = 3637, - [3693] = 3635, - [3694] = 3637, - [3695] = 3637, - [3696] = 3637, - [3697] = 3697, - [3698] = 3637, - [3699] = 3635, - [3700] = 3635, - [3701] = 3637, - [3702] = 3637, - [3703] = 3635, - [3704] = 3637, - [3705] = 3637, - [3706] = 3637, - [3707] = 3635, - [3708] = 3637, - [3709] = 3697, - [3710] = 3635, - [3711] = 3635, - [3712] = 3637, - [3713] = 3637, - [3714] = 3635, - [3715] = 3635, - [3716] = 3690, - [3717] = 3637, - [3718] = 3635, - [3719] = 3635, - [3720] = 3697, - [3721] = 3637, - [3722] = 3637, - [3723] = 3635, - [3724] = 3637, - [3725] = 3635, - [3726] = 3637, - [3727] = 3635, - [3728] = 3637, - [3729] = 3637, - [3730] = 3635, - [3731] = 3635, - [3732] = 3635, - [3733] = 3637, - [3734] = 3637, - [3735] = 3637, - [3736] = 3635, - [3737] = 3637, - [3738] = 3635, - [3739] = 3635, - [3740] = 3637, - [3741] = 3635, - [3742] = 3690, - [3743] = 3637, - [3744] = 3635, - [3745] = 3635, - [3746] = 3637, - [3747] = 3697, - [3748] = 3748, - [3749] = 3749, - [3750] = 3750, - [3751] = 3749, - [3752] = 3748, - [3753] = 3750, - [3754] = 3748, - [3755] = 3750, - [3756] = 3750, - [3757] = 3748, - [3758] = 3749, - [3759] = 3748, - [3760] = 3750, - [3761] = 3750, - [3762] = 3750, - [3763] = 3748, - [3764] = 3749, - [3765] = 3749, - [3766] = 3749, - [3767] = 3749, - [3768] = 3749, - [3769] = 3748, - [3770] = 3749, - [3771] = 3748, - [3772] = 3750, - [3773] = 3748, - [3774] = 3750, - [3775] = 3750, - [3776] = 3748, - [3777] = 3749, - [3778] = 3749, - [3779] = 3748, - [3780] = 3749, - [3781] = 3750, - [3782] = 3750, - [3783] = 3749, - [3784] = 3748, - [3785] = 3748, - [3786] = 3748, - [3787] = 3749, - [3788] = 3748, - [3789] = 3749, - [3790] = 3748, - [3791] = 3749, - [3792] = 3748, - [3793] = 3748, - [3794] = 3750, - [3795] = 3748, - [3796] = 3750, - [3797] = 3749, - [3798] = 3750, - [3799] = 3749, - [3800] = 3749, - [3801] = 3748, - [3802] = 3750, - [3803] = 3749, - [3804] = 3749, - [3805] = 3748, - [3806] = 3748, - [3807] = 3748, - [3808] = 3750, - [3809] = 3748, - [3810] = 3749, - [3811] = 3750, - [3812] = 3748, - [3813] = 3750, - [3814] = 3748, - [3815] = 3749, - [3816] = 3750, - [3817] = 3748, - [3818] = 3749, - [3819] = 3748, - [3820] = 3749, - [3821] = 3748, - [3822] = 3750, - [3823] = 3749, - [3824] = 3750, - [3825] = 3750, - [3826] = 3749, - [3827] = 3750, - [3828] = 3748, - [3829] = 3749, - [3830] = 3750, - [3831] = 3749, - [3832] = 3750, - [3833] = 3748, - [3834] = 3748, - [3835] = 3748, - [3836] = 3750, - [3837] = 3749, - [3838] = 3750, - [3839] = 3748, - [3840] = 3748, - [3841] = 3749, - [3842] = 3748, - [3843] = 3749, - [3844] = 3750, - [3845] = 3749, - [3846] = 3750, - [3847] = 3748, - [3848] = 3748, - [3849] = 3750, - [3850] = 3748, - [3851] = 3750, - [3852] = 3750, - [3853] = 3749, - [3854] = 3750, - [3855] = 3748, - [3856] = 3749, - [3857] = 3749, - [3858] = 3750, - [3859] = 3748, - [3860] = 3749, - [3861] = 3750, - [3862] = 3750, - [3863] = 3749, - [3864] = 3748, - [3865] = 3749, - [3866] = 3750, - [3867] = 3750, - [3868] = 3748, - [3869] = 3749, - [3870] = 3750, - [3871] = 3748, - [3872] = 3748, - [3873] = 3749, - [3874] = 3749, - [3875] = 3748, - [3876] = 3749, - [3877] = 3750, - [3878] = 3750, - [3879] = 3749, - [3880] = 3749, - [3881] = 3749, - [3882] = 3749, - [3883] = 3748, - [3884] = 3748, - [3885] = 3748, - [3886] = 3749, - [3887] = 3750, - [3888] = 3750, - [3889] = 3750, - [3890] = 3749, - [3891] = 3749, - [3892] = 3750, - [3893] = 3748, - [3894] = 3748, - [3895] = 3748, - [3896] = 3750, - [3897] = 3750, - [3898] = 3749, - [3899] = 3749, - [3900] = 3900, - [3901] = 3901, - [3902] = 3902, - [3903] = 3903, - [3904] = 3901, - [3905] = 3901, - [3906] = 3903, - [3907] = 3907, - [3908] = 3908, - [3909] = 3901, - [3910] = 3901, - [3911] = 3903, - [3912] = 3901, - [3913] = 3901, - [3914] = 3903, - [3915] = 3903, - [3916] = 3901, - [3917] = 3903, - [3918] = 3901, - [3919] = 3919, - [3920] = 370, - [3921] = 366, - [3922] = 3922, - [3923] = 3923, - [3924] = 357, - [3925] = 372, - [3926] = 3926, - [3927] = 3927, - [3928] = 350, - [3929] = 368, - [3930] = 349, - [3931] = 373, - [3932] = 369, - [3933] = 361, - [3934] = 3934, - [3935] = 3935, - [3936] = 3936, - [3937] = 343, - [3938] = 3938, - [3939] = 3939, - [3940] = 3939, - [3941] = 3939, - [3942] = 3942, - [3943] = 3943, - [3944] = 3939, - [3945] = 3939, - [3946] = 345, - [3947] = 3939, - [3948] = 3939, - [3949] = 3939, - [3950] = 3939, - [3951] = 347, - [3952] = 3943, - [3953] = 3939, - [3954] = 3942, - [3955] = 3939, - [3956] = 3942, - [3957] = 3939, - [3958] = 3943, - [3959] = 344, - [3960] = 3939, - [3961] = 3939, - [3962] = 3939, - [3963] = 3939, - [3964] = 3939, - [3965] = 3939, - [3966] = 3939, - [3967] = 350, - [3968] = 3968, - [3969] = 3969, - [3970] = 365, - [3971] = 3971, - [3972] = 3968, - [3973] = 366, - [3974] = 372, - [3975] = 373, - [3976] = 3976, - [3977] = 3971, - [3978] = 372, - [3979] = 367, - [3980] = 354, - [3981] = 3971, - [3982] = 366, - [3983] = 361, - [3984] = 3968, - [3985] = 369, - [3986] = 350, - [3987] = 3976, - [3988] = 3976, - [3989] = 357, - [3990] = 352, - [3991] = 349, - [3992] = 3971, - [3993] = 370, - [3994] = 368, - [3995] = 3969, - [3996] = 358, - [3997] = 3968, - [3998] = 351, - [3999] = 353, - [4000] = 3968, - [4001] = 371, - [4002] = 3976, - [4003] = 349, - [4004] = 3976, - [4005] = 370, - [4006] = 356, - [4007] = 3971, - [4008] = 3971, - [4009] = 395, - [4010] = 369, - [4011] = 3971, - [4012] = 3968, - [4013] = 3976, - [4014] = 3969, - [4015] = 3968, - [4016] = 3968, - [4017] = 373, - [4018] = 3976, - [4019] = 368, - [4020] = 3971, - [4021] = 364, - [4022] = 3976, - [4023] = 4023, - [4024] = 4024, - [4025] = 4025, - [4026] = 4024, - [4027] = 4027, - [4028] = 4024, - [4029] = 4029, - [4030] = 4030, - [4031] = 343, - [4032] = 4032, - [4033] = 4033, - [4034] = 397, - [4035] = 4035, - [4036] = 343, - [4037] = 4037, - [4038] = 4038, - [4039] = 4039, - [4040] = 4023, - [4041] = 4041, - [4042] = 4042, - [4043] = 4023, - [4044] = 4044, - [4045] = 4045, - [4046] = 4046, - [4047] = 4047, - [4048] = 4048, - [4049] = 4048, - [4050] = 4050, - [4051] = 4051, - [4052] = 4052, - [4053] = 4053, - [4054] = 4054, - [4055] = 4055, - [4056] = 4056, - [4057] = 4057, - [4058] = 4048, - [4059] = 4059, - [4060] = 4050, - [4061] = 4061, - [4062] = 4062, - [4063] = 4063, - [4064] = 4055, - [4065] = 4065, - [4066] = 4066, - [4067] = 4052, - [4068] = 4056, - [4069] = 4050, - [4070] = 4052, - [4071] = 4071, - [4072] = 4072, - [4073] = 4073, - [4074] = 347, - [4075] = 4051, - [4076] = 4076, - [4077] = 4056, - [4078] = 4052, - [4079] = 347, - [4080] = 345, - [4081] = 4059, - [4082] = 4048, - [4083] = 4083, - [4084] = 4050, - [4085] = 4085, - [4086] = 4059, - [4087] = 4055, - [4088] = 344, - [4089] = 345, - [4090] = 4051, - [4091] = 344, - [4092] = 4056, - [4093] = 352, - [4094] = 368, - [4095] = 4095, - [4096] = 4096, - [4097] = 358, - [4098] = 357, - [4099] = 4099, - [4100] = 4100, - [4101] = 4101, - [4102] = 361, - [4103] = 366, - [4104] = 4104, - [4105] = 351, - [4106] = 4106, - [4107] = 4107, - [4108] = 364, - [4109] = 4109, - [4110] = 369, - [4111] = 350, - [4112] = 356, - [4113] = 4113, - [4114] = 373, - [4115] = 372, - [4116] = 353, - [4117] = 366, - [4118] = 358, - [4119] = 4119, - [4120] = 364, - [4121] = 371, - [4122] = 349, - [4123] = 354, - [4124] = 370, - [4125] = 368, - [4126] = 4126, - [4127] = 369, - [4128] = 357, - [4129] = 4104, - [4130] = 395, - [4131] = 350, - [4132] = 354, - [4133] = 367, - [4134] = 4134, - [4135] = 4135, - [4136] = 371, - [4137] = 351, - [4138] = 370, - [4139] = 349, - [4140] = 4140, - [4141] = 365, - [4142] = 4142, - [4143] = 365, - [4144] = 372, - [4145] = 373, - [4146] = 4146, - [4147] = 4147, - [4148] = 356, - [4149] = 367, - [4150] = 4104, - [4151] = 361, - [4152] = 353, - [4153] = 352, - [4154] = 395, - [4155] = 4155, - [4156] = 4156, - [4157] = 4157, - [4158] = 4158, - [4159] = 4159, - [4160] = 4160, - [4161] = 4161, - [4162] = 1617, - [4163] = 4161, - [4164] = 4161, - [4165] = 4158, - [4166] = 4158, - [4167] = 4156, - [4168] = 4161, - [4169] = 4169, - [4170] = 4158, - [4171] = 4161, - [4172] = 4172, - [4173] = 4158, - [4174] = 4155, - [4175] = 4161, - [4176] = 4158, - [4177] = 4177, - [4178] = 4158, - [4179] = 4158, - [4180] = 4161, - [4181] = 4181, - [4182] = 4161, - [4183] = 4183, - [4184] = 4161, - [4185] = 4158, - [4186] = 4161, - [4187] = 4187, - [4188] = 4158, - [4189] = 4158, - [4190] = 4190, - [4191] = 4191, - [4192] = 4156, - [4193] = 4158, - [4194] = 4161, - [4195] = 4158, - [4196] = 4161, - [4197] = 4161, - [4198] = 4158, - [4199] = 397, - [4200] = 4161, - [4201] = 4161, - [4202] = 4202, - [4203] = 4161, - [4204] = 4158, - [4205] = 4158, - [4206] = 4158, - [4207] = 4207, - [4208] = 4158, - [4209] = 4158, - [4210] = 4210, - [4211] = 4211, - [4212] = 4158, - [4213] = 4161, - [4214] = 4214, - [4215] = 4215, - [4216] = 4161, - [4217] = 4217, - [4218] = 4158, - [4219] = 4158, - [4220] = 4220, - [4221] = 4221, - [4222] = 4158, - [4223] = 1601, - [4224] = 4224, - [4225] = 4225, - [4226] = 4226, - [4227] = 4161, - [4228] = 4228, - [4229] = 4229, - [4230] = 4158, - [4231] = 4073, - [4232] = 4158, - [4233] = 4233, - [4234] = 4158, - [4235] = 4158, - [4236] = 4158, - [4237] = 4161, - [4238] = 4158, - [4239] = 4239, - [4240] = 4240, - [4241] = 4241, - [4242] = 4242, - [4243] = 4243, - [4244] = 4244, - [4245] = 1661, - [4246] = 4158, - [4247] = 4247, - [4248] = 397, - [4249] = 4158, - [4250] = 4158, - [4251] = 4251, - [4252] = 4158, - [4253] = 4158, - [4254] = 4254, - [4255] = 4158, - [4256] = 4158, - [4257] = 4257, - [4258] = 4161, - [4259] = 4259, - [4260] = 4158, - [4261] = 4261, - [4262] = 4262, - [4263] = 4263, - [4264] = 4264, - [4265] = 4265, - [4266] = 4158, - [4267] = 4267, - [4268] = 4158, - [4269] = 4269, - [4270] = 4158, - [4271] = 1663, - [4272] = 4158, - [4273] = 4273, - [4274] = 4158, - [4275] = 4275, - [4276] = 4158, - [4277] = 4158, - [4278] = 4155, - [4279] = 4279, - [4280] = 4280, - [4281] = 4281, - [4282] = 4158, - [4283] = 4158, - [4284] = 4158, - [4285] = 4285, - [4286] = 4286, - [4287] = 4073, - [4288] = 4161, - [4289] = 4158, - [4290] = 4290, - [4291] = 4158, - [4292] = 4161, - [4293] = 4158, - [4294] = 4294, - [4295] = 4295, - [4296] = 4294, - [4297] = 4297, - [4298] = 365, - [4299] = 367, - [4300] = 361, - [4301] = 4294, - [4302] = 350, - [4303] = 4294, - [4304] = 369, - [4305] = 368, - [4306] = 366, - [4307] = 4295, - [4308] = 357, - [4309] = 4294, - [4310] = 4294, - [4311] = 4295, - [4312] = 4294, - [4313] = 4294, - [4314] = 4294, - [4315] = 4294, - [4316] = 4294, - [4317] = 4295, - [4318] = 4294, - [4319] = 4294, - [4320] = 4297, - [4321] = 4295, - [4322] = 4322, - [4323] = 4294, - [4324] = 4294, - [4325] = 4294, - [4326] = 4294, - [4327] = 4327, - [4328] = 4294, - [4329] = 4294, - [4330] = 4294, - [4331] = 4294, - [4332] = 4294, - [4333] = 4126, - [4334] = 4294, - [4335] = 4297, - [4336] = 4294, - [4337] = 4294, - [4338] = 4338, - [4339] = 4294, - [4340] = 4134, - [4341] = 4294, - [4342] = 1744, - [4343] = 1749, - [4344] = 4294, - [4345] = 4294, - [4346] = 4294, - [4347] = 4294, - [4348] = 4134, - [4349] = 4126, - [4350] = 4294, - [4351] = 4351, - [4352] = 4351, - [4353] = 4294, - [4354] = 4294, - [4355] = 4294, - [4356] = 4356, - [4357] = 4294, - [4358] = 4295, - [4359] = 4295, - [4360] = 4295, - [4361] = 4294, - [4362] = 4294, - [4363] = 4295, - [4364] = 4295, - [4365] = 4294, - [4366] = 1839, - [4367] = 4295, - [4368] = 4294, - [4369] = 4295, - [4370] = 1899, - [4371] = 4294, - [4372] = 4295, - [4373] = 4295, - [4374] = 4374, - [4375] = 4294, - [4376] = 4295, - [4377] = 4294, - [4378] = 4294, - [4379] = 4295, - [4380] = 4380, - [4381] = 4294, - [4382] = 4295, - [4383] = 4295, - [4384] = 4384, - [4385] = 4294, - [4386] = 4295, - [4387] = 4295, - [4388] = 4356, - [4389] = 4294, - [4390] = 4351, - [4391] = 4295, - [4392] = 4294, - [4393] = 4294, - [4394] = 4295, - [4395] = 4294, - [4396] = 4295, - [4397] = 4294, - [4398] = 4398, - [4399] = 4294, - [4400] = 4294, - [4401] = 4356, - [4402] = 4294, - [4403] = 4403, - [4404] = 4404, - [4405] = 4405, - [4406] = 4406, - [4407] = 4407, - [4408] = 4408, - [4409] = 4409, - [4410] = 4410, - [4411] = 4411, - [4412] = 4412, - [4413] = 4413, - [4414] = 4414, - [4415] = 4415, - [4416] = 4416, - [4417] = 4417, - [4418] = 4406, - [4419] = 4419, - [4420] = 4420, - [4421] = 4408, - [4422] = 4422, - [4423] = 4409, - [4424] = 4406, - [4425] = 4425, - [4426] = 4406, - [4427] = 4404, - [4428] = 4416, - [4429] = 4403, - [4430] = 4417, - [4431] = 4431, - [4432] = 4406, - [4433] = 4408, - [4434] = 4434, - [4435] = 4435, - [4436] = 4409, - [4437] = 4420, - [4438] = 4438, - [4439] = 4416, - [4440] = 4417, - [4441] = 4417, - [4442] = 4442, - [4443] = 4403, - [4444] = 4444, - [4445] = 4406, - [4446] = 4408, - [4447] = 4409, - [4448] = 4409, - [4449] = 4416, - [4450] = 4404, - [4451] = 4417, - [4452] = 4417, - [4453] = 4453, - [4454] = 4406, - [4455] = 4406, - [4456] = 4408, - [4457] = 4409, - [4458] = 4417, - [4459] = 4416, - [4460] = 4404, - [4461] = 4416, - [4462] = 4409, - [4463] = 4417, - [4464] = 4406, - [4465] = 4408, - [4466] = 4413, - [4467] = 4404, - [4468] = 4416, - [4469] = 4406, - [4470] = 4404, - [4471] = 4408, - [4472] = 4409, - [4473] = 4416, - [4474] = 4417, - [4475] = 4406, - [4476] = 4476, - [4477] = 4477, - [4478] = 4417, - [4479] = 4479, - [4480] = 4404, - [4481] = 4403, - [4482] = 4406, - [4483] = 4483, - [4484] = 4413, - [4485] = 4413, - [4486] = 4408, - [4487] = 4408, - [4488] = 4417, - [4489] = 4404, - [4490] = 4409, - [4491] = 4416, - [4492] = 4409, - [4493] = 4403, - [4494] = 4403, - [4495] = 4444, - [4496] = 4453, - [4497] = 4416, - [4498] = 4404, - [4499] = 4417, - [4500] = 4409, - [4501] = 4416, - [4502] = 4403, - [4503] = 4417, - [4504] = 4406, - [4505] = 4413, - [4506] = 4483, - [4507] = 4404, - [4508] = 4408, - [4509] = 4409, - [4510] = 4416, - [4511] = 4408, - [4512] = 4417, - [4513] = 4513, - [4514] = 4403, - [4515] = 4515, - [4516] = 4404, - [4517] = 4406, - [4518] = 4413, - [4519] = 4405, - [4520] = 4408, - [4521] = 4521, - [4522] = 4409, - [4523] = 4413, - [4524] = 4524, - [4525] = 4404, - [4526] = 4417, - [4527] = 4416, - [4528] = 4416, - [4529] = 4408, - [4530] = 4409, - [4531] = 4417, - [4532] = 4453, - [4533] = 4444, - [4534] = 4404, - [4535] = 4408, - [4536] = 4403, - [4537] = 4406, - [4538] = 4413, - [4539] = 4408, - [4540] = 4409, - [4541] = 4541, - [4542] = 4403, - [4543] = 4404, - [4544] = 4413, - [4545] = 4416, - [4546] = 4546, - [4547] = 4417, - [4548] = 4406, - [4549] = 4415, - [4550] = 4403, - [4551] = 4403, - [4552] = 4404, - [4553] = 4403, - [4554] = 4406, - [4555] = 4413, - [4556] = 4406, - [4557] = 4408, - [4558] = 4409, - [4559] = 4476, - [4560] = 4404, - [4561] = 4416, - [4562] = 4417, - [4563] = 4406, - [4564] = 4414, - [4565] = 4406, - [4566] = 4403, - [4567] = 4404, - [4568] = 4404, - [4569] = 4406, - [4570] = 4413, - [4571] = 4442, - [4572] = 4431, - [4573] = 4408, - [4574] = 4409, - [4575] = 4575, - [4576] = 4404, - [4577] = 4417, - [4578] = 4410, - [4579] = 4579, - [4580] = 4411, - [4581] = 4581, - [4582] = 4416, - [4583] = 4435, - [4584] = 4404, - [4585] = 4412, - [4586] = 4416, - [4587] = 4417, - [4588] = 4588, - [4589] = 4409, - [4590] = 4404, - [4591] = 4414, - [4592] = 4592, - [4593] = 4415, - [4594] = 4408, - [4595] = 4413, - [4596] = 4404, - [4597] = 4413, - [4598] = 4403, - [4599] = 4406, - [4600] = 4419, - [4601] = 4422, - [4602] = 4404, - [4603] = 4413, - [4604] = 4425, - [4605] = 4408, - [4606] = 4409, - [4607] = 4416, - [4608] = 4404, - [4609] = 4408, - [4610] = 4417, - [4611] = 4406, - [4612] = 4612, - [4613] = 4403, - [4614] = 4404, - [4615] = 4406, - [4616] = 4413, - [4617] = 4434, - [4618] = 4435, - [4619] = 4409, - [4620] = 4404, - [4621] = 4420, - [4622] = 4622, - [4623] = 4409, - [4624] = 4612, - [4625] = 4625, - [4626] = 4404, - [4627] = 4416, - [4628] = 4622, - [4629] = 4403, - [4630] = 4444, - [4631] = 4453, - [4632] = 4404, - [4633] = 4417, - [4634] = 4408, - [4635] = 4406, - [4636] = 4417, - [4637] = 4403, - [4638] = 4404, - [4639] = 4639, - [4640] = 4425, - [4641] = 4406, - [4642] = 4413, - [4643] = 4408, - [4644] = 4404, - [4645] = 4409, - [4646] = 4416, - [4647] = 4647, - [4648] = 4416, - [4649] = 4413, - [4650] = 4404, - [4651] = 4408, - [4652] = 4409, - [4653] = 4416, - [4654] = 4575, - [4655] = 4416, - [4656] = 4404, - [4657] = 4417, - [4658] = 4413, - [4659] = 4403, - [4660] = 4404, - [4661] = 4417, - [4662] = 4404, - [4663] = 4408, - [4664] = 4413, - [4665] = 4665, - [4666] = 4416, - [4667] = 4416, - [4668] = 4404, - [4669] = 4422, - [4670] = 4521, - [4671] = 4406, - [4672] = 4413, - [4673] = 4405, - [4674] = 4404, - [4675] = 4406, - [4676] = 4408, - [4677] = 4409, - [4678] = 4416, - [4679] = 4406, - [4680] = 4404, - [4681] = 4417, - [4682] = 4403, - [4683] = 4403, - [4684] = 4403, - [4685] = 4406, - [4686] = 4404, - [4687] = 4419, - [4688] = 4413, - [4689] = 4408, - [4690] = 4409, - [4691] = 4691, - [4692] = 4404, - [4693] = 4406, - [4694] = 4416, - [4695] = 4476, - [4696] = 4417, - [4697] = 4408, - [4698] = 4404, - [4699] = 4417, - [4700] = 4409, - [4701] = 4407, - [4702] = 4416, - [4703] = 4416, - [4704] = 4404, - [4705] = 4705, - [4706] = 4417, - [4707] = 4707, - [4708] = 4403, - [4709] = 4709, - [4710] = 4404, - [4711] = 4442, - [4712] = 4406, - [4713] = 4413, - [4714] = 4431, - [4715] = 4408, - [4716] = 4404, - [4717] = 4409, - [4718] = 4416, - [4719] = 4409, - [4720] = 4407, - [4721] = 4415, - [4722] = 4417, - [4723] = 4417, - [4724] = 4414, - [4725] = 4408, - [4726] = 4413, - [4727] = 4407, - [4728] = 4404, - [4729] = 4413, - [4730] = 4417, - [4731] = 4403, - [4732] = 4406, - [4733] = 4413, - [4734] = 4404, - [4735] = 4408, - [4736] = 4409, - [4737] = 4416, - [4738] = 4416, - [4739] = 4406, - [4740] = 4404, - [4741] = 4417, - [4742] = 4403, - [4743] = 4410, - [4744] = 4409, - [4745] = 4403, - [4746] = 4404, - [4747] = 4406, - [4748] = 4412, - [4749] = 4413, - [4750] = 4408, - [4751] = 4409, - [4752] = 4405, - [4753] = 4408, - [4754] = 4416, - [4755] = 4403, - [4756] = 4417, - [4757] = 4417, - [4758] = 4408, - [4759] = 4416, - [4760] = 4546, - [4761] = 4406, - [4762] = 4406, - [4763] = 4521, - [4764] = 4413, - [4765] = 4408, - [4766] = 4409, - [4767] = 4413, - [4768] = 4768, - [4769] = 4409, - [4770] = 4411, - [4771] = 4771, - [4772] = 4416, - [4773] = 4408, - [4774] = 4417, - [4775] = 4691, - [4776] = 4413, - [4777] = 4409, - [4778] = 4403, - [4779] = 4417, - [4780] = 4406, - [4781] = 4541, - [4782] = 4413, - [4783] = 4408, - [4784] = 4409, - [4785] = 4409, - [4786] = 4416, - [4787] = 4403, - [4788] = 4417, - [4789] = 4403, - [4790] = 4406, - [4791] = 4403, - [4792] = 4406, - [4793] = 4413, - [4794] = 4408, - [4795] = 4409, - [4796] = 4416, - [4797] = 4417, - [4798] = 4417, - [4799] = 4403, - [4800] = 4416, - [4801] = 4403, - [4802] = 4406, - [4803] = 4413, - [4804] = 4408, - [4805] = 4409, - [4806] = 4416, - [4807] = 4771, - [4808] = 4409, - [4809] = 4417, - [4810] = 4408, - [4811] = 4413, - [4812] = 4403, - [4813] = 4406, - [4814] = 4403, - [4815] = 4406, - [4816] = 4413, - [4817] = 4408, - [4818] = 4409, - [4819] = 4416, - [4820] = 4406, - [4821] = 4417, - [4822] = 4403, - [4823] = 4622, - [4824] = 4403, - [4825] = 4406, - [4826] = 4413, - [4827] = 4408, - [4828] = 4409, - [4829] = 4829, - [4830] = 4612, - [4831] = 4416, - [4832] = 4417, - [4833] = 4575, - [4834] = 4403, - [4835] = 4406, - [4836] = 4404, - [4837] = 4413, - [4838] = 4408, - [4839] = 4409, - [4840] = 4416, - [4841] = 4417, - [4842] = 637, - [4843] = 4413, - [4844] = 4768, - [4845] = 4417, - [4846] = 4416, - [4847] = 4771, - [4848] = 4848, - [4849] = 4408, - [4850] = 4408, - [4851] = 4691, - [4852] = 4408, - [4853] = 4413, - [4854] = 4403, - [4855] = 4406, - [4856] = 4541, - [4857] = 4413, - [4858] = 4408, - [4859] = 4409, - [4860] = 4416, - [4861] = 4406, - [4862] = 4417, - [4863] = 4403, - [4864] = 4476, - [4865] = 4409, - [4866] = 4434, - [4867] = 4403, - [4868] = 4406, - [4869] = 4413, - [4870] = 4408, - [4871] = 4409, - [4872] = 4416, - [4873] = 4873, - [4874] = 4874, - [4875] = 4417, - [4876] = 4416, - [4877] = 4417, - [4878] = 4417, - [4879] = 4416, - [4880] = 4403, - [4881] = 4406, - [4882] = 4413, - [4883] = 4408, - [4884] = 4409, - [4885] = 4409, - [4886] = 4416, - [4887] = 4408, - [4888] = 4417, - [4889] = 4413, - [4890] = 4403, - [4891] = 4406, - [4892] = 4403, - [4893] = 4403, - [4894] = 4406, - [4895] = 4413, - [4896] = 4483, - [4897] = 4408, - [4898] = 4409, - [4899] = 4416, - [4900] = 4417, - [4901] = 4409, - [4902] = 4771, - [4903] = 4546, - [4904] = 4406, - [4905] = 4691, - [4906] = 4417, - [4907] = 4417, - [4908] = 4403, - [4909] = 4406, - [4910] = 4541, - [4911] = 4413, - [4912] = 4416, - [4913] = 4403, - [4914] = 4417, - [4915] = 4409, - [4916] = 4406, - [4917] = 4416, - [4918] = 4416, - [4919] = 4417, - [4920] = 4771, - [4921] = 4409, - [4922] = 4408, - [4923] = 4409, - [4924] = 4409, - [4925] = 4413, - [4926] = 4403, - [4927] = 4406, - [4928] = 4483, - [4929] = 4413, - [4930] = 4408, - [4931] = 4413, - [4932] = 4408, - [4933] = 364, - [4934] = 4771, - [4935] = 4771, - [4936] = 4771, - [4937] = 4771, - [4938] = 4771, - [4939] = 4771, - [4940] = 4771, - [4941] = 4771, - [4942] = 4771, - [4943] = 4771, - [4944] = 4771, - [4945] = 4771, - [4946] = 4771, - [4947] = 4771, - [4948] = 4771, - [4949] = 4771, - [4950] = 4771, - [4951] = 4771, - [4952] = 4771, - [4953] = 4771, - [4954] = 4771, - [4955] = 4771, - [4956] = 4771, - [4957] = 4771, - [4958] = 4771, - [4959] = 4771, - [4960] = 4771, - [4961] = 4771, - [4962] = 4771, - [4963] = 4771, - [4964] = 4771, - [4965] = 4771, - [4966] = 4771, - [4967] = 4771, - [4968] = 4771, - [4969] = 4771, - [4970] = 4771, - [4971] = 4771, - [4972] = 4771, - [4973] = 4771, - [4974] = 4771, - [4975] = 4771, - [4976] = 4771, - [4977] = 4977, - [4978] = 4483, - [4979] = 4476, - [4980] = 4409, - [4981] = 358, - [4982] = 4416, - [4983] = 4977, - [4984] = 4483, - [4985] = 4476, - [4986] = 4417, - [4987] = 4768, - [4988] = 356, - [4989] = 4977, - [4990] = 4483, - [4991] = 4476, - [4992] = 4408, - [4993] = 4977, - [4994] = 4483, - [4995] = 4476, - [4996] = 4977, - [4997] = 4977, - [4998] = 4977, - [4999] = 4977, - [5000] = 4977, - [5001] = 4977, - [5002] = 4977, - [5003] = 4977, - [5004] = 4977, - [5005] = 4977, - [5006] = 4977, - [5007] = 4977, - [5008] = 4977, - [5009] = 4977, - [5010] = 4977, - [5011] = 4977, - [5012] = 4977, - [5013] = 4977, - [5014] = 4977, - [5015] = 4977, - [5016] = 4977, - [5017] = 4977, - [5018] = 4977, - [5019] = 4977, - [5020] = 4977, - [5021] = 4977, - [5022] = 4977, - [5023] = 4977, - [5024] = 4977, - [5025] = 4977, - [5026] = 4977, - [5027] = 4977, - [5028] = 4977, - [5029] = 4977, - [5030] = 4977, - [5031] = 4977, - [5032] = 4977, - [5033] = 4977, - [5034] = 4977, - [5035] = 4977, - [5036] = 4977, - [5037] = 4977, - [5038] = 4977, - [5039] = 4977, - [5040] = 4413, -}; - -static inline bool sym_word_character_set_1(int32_t c) { - return (c < '&' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c < '$' - ? c == '"' - : c <= '$'))) - : (c <= ')' || (c < '[' - ? (c < '>' - ? (c >= ';' && c <= '<') - : c <= '>') - : (c <= ']' || (c < '{' - ? c == '`' - : c <= '}'))))); -} - -static inline bool sym_word_character_set_2(int32_t c) { - return (c < '&' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c < '$' - ? c == '"' - : c <= '$'))) - : (c <= ')' || (c < '`' - ? (c < '[' - ? (c >= ';' && c <= '>') - : c <= ']') - : (c <= '`' || (c >= '{' && c <= '}'))))); -} - -static inline bool sym_word_character_set_3(int32_t c) { - return (c < '$' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= '$' || (c < '[' - ? (c < ';' - ? (c >= '&' && c <= ')') - : c <= '>') - : (c <= ']' || (c >= '`' && c <= '}'))))); -} - -static inline bool sym_word_character_set_4(int32_t c) { - return (c < '&' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c < '$' - ? c == '"' - : c <= '$'))) - : (c <= ')' || (c < '[' - ? (c < '>' - ? (c >= ';' && c <= '<') - : c <= '>') - : (c <= ']' || (c >= '`' && c <= '}'))))); -} - -static inline bool sym_word_character_set_5(int32_t c) { - return (c < ';' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c >= '"' && c <= ')'))) - : (c <= '<' || (c < '`' - ? (c < '[' - ? c == '>' - : c <= ']') - : (c <= '`' || (c >= '{' && c <= '}'))))); -} - -static inline bool sym_word_character_set_6(int32_t c) { - return (c < '$' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < '`' - ? (c < '[' - ? (c >= ';' && c <= '>') - : c <= ']') - : (c <= '`' || (c >= '{' && c <= '}'))))); -} - -static inline bool sym_word_character_set_7(int32_t c) { - return (c < ';' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c < '$' - ? c == '"' - : c <= ')'))) - : (c <= '<' || (c < '`' - ? (c < '[' - ? c == '>' - : c <= ']') - : (c <= '`' || (c >= '{' && c <= '}'))))); -} - -static inline bool sym_word_character_set_8(int32_t c) { - return (c < ';' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c < '&' - ? (c >= '"' && c <= '$') - : c <= ')'))) - : (c <= '<' || (c < '`' - ? (c < '[' - ? c == '>' - : c <= ']') - : (c <= '`' || (c >= '{' && c <= '}'))))); -} - -static inline bool sym_word_character_set_9(int32_t c) { - return (c < '&' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c >= '"' && c <= '$'))) - : (c <= ')' || (c < '[' - ? (c < '>' - ? (c >= ';' && c <= '<') - : c <= '>') - : (c <= ']' || (c >= '`' && c <= '}'))))); -} - -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - switch (state) { - case 0: - if (eof) ADVANCE(442); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(687); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(514); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(503); - if (lookahead == '+') ADVANCE(643); - if (lookahead == ',') ADVANCE(711); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '.') ADVANCE(791); - if (lookahead == '/') ADVANCE(509); - if (lookahead == '0') ADVANCE(785); - if (lookahead == ':') ADVANCE(638); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(336); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(713); - if (lookahead == '_') ADVANCE(788); - if (lookahead == '`') ADVANCE(718); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == 'i') ADVANCE(797); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '|') ADVANCE(550); - if (lookahead == '}') ADVANCE(649); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(438) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 1: - if (lookahead == '\n') SKIP(185) - END_STATE(); - case 2: - if (lookahead == '\n') SKIP(193) - END_STATE(); - case 3: - if (lookahead == '\n') SKIP(194) - END_STATE(); - case 4: - if (lookahead == '\n') SKIP(5) - END_STATE(); - case 5: - if (lookahead == '\n') ADVANCE(577); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(339); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(550); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 6: - if (lookahead == '\n') SKIP(195) - END_STATE(); - case 7: - if (lookahead == '\n') SKIP(197) - END_STATE(); - case 8: - if (lookahead == '\n') SKIP(186) - END_STATE(); - case 9: - if (lookahead == '\n') SKIP(198) - END_STATE(); - case 10: - if (lookahead == '\n') SKIP(187) - END_STATE(); - case 11: - if (lookahead == '\n') SKIP(189) - END_STATE(); - case 12: - if (lookahead == '\n') ADVANCE(578); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(292); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 13: - if (lookahead == '\n') ADVANCE(742); - END_STATE(); - case 14: - if (lookahead == '\n') ADVANCE(784); - END_STATE(); - case 15: - if (lookahead == '\n') ADVANCE(784); - if (lookahead == '\r') ADVANCE(14); - END_STATE(); - case 16: - if (lookahead == '\n') ADVANCE(784); - if (lookahead == '\r') ADVANCE(14); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(800); - END_STATE(); - case 17: - if (lookahead == '\n') SKIP(109) - END_STATE(); - case 18: - if (lookahead == '\n') ADVANCE(763); - END_STATE(); - case 19: - if (lookahead == '\n') SKIP(207) - END_STATE(); - case 20: - if (lookahead == '\n') SKIP(236) - END_STATE(); - case 21: - if (lookahead == '\n') SKIP(196) - END_STATE(); - case 22: - if (lookahead == '\n') SKIP(135) - END_STATE(); - case 23: - if (lookahead == '\n') SKIP(147) - END_STATE(); - case 24: - if (lookahead == '\n') SKIP(151) - END_STATE(); - case 25: - if (lookahead == '\n') SKIP(155) - END_STATE(); - case 26: - if (lookahead == '\n') SKIP(158) - END_STATE(); - case 27: - if (lookahead == '\n') ADVANCE(744); - END_STATE(); - case 28: - if (lookahead == '\n') ADVANCE(747); - END_STATE(); - case 29: - if (lookahead == '\n') SKIP(161) - END_STATE(); - case 30: - if (lookahead == '\n') SKIP(164) - END_STATE(); - case 31: - if (lookahead == '\n') SKIP(166) - END_STATE(); - case 32: - if (lookahead == '\n') ADVANCE(751); - END_STATE(); - case 33: - if (lookahead == '\n') ADVANCE(753); - END_STATE(); - case 34: - if (lookahead == '\n') ADVANCE(755); - END_STATE(); - case 35: - if (lookahead == '\n') SKIP(168) - END_STATE(); - case 36: - if (lookahead == '\n') ADVANCE(758); - END_STATE(); - case 37: - if (lookahead == '\n') SKIP(237) - END_STATE(); - case 38: - if (lookahead == '\n') SKIP(246) - END_STATE(); - case 39: - if (lookahead == '\n') SKIP(243) - END_STATE(); - case 40: - if (lookahead == '\n') SKIP(252) - END_STATE(); - case 41: - if (lookahead == '\n') ADVANCE(759); - END_STATE(); - case 42: - if (lookahead == '\n') SKIP(244) - END_STATE(); - case 43: - if (lookahead == '\n') ADVANCE(766); - END_STATE(); - case 44: - if (lookahead == '\n') ADVANCE(760); - END_STATE(); - case 45: - if (lookahead == '\n') ADVANCE(767); - END_STATE(); - case 46: - if (lookahead == '\n') SKIP(240) - END_STATE(); - case 47: - if (lookahead == '\n') ADVANCE(775); - END_STATE(); - case 48: - if (lookahead == '\n') ADVANCE(771); - END_STATE(); - case 49: - if (lookahead == '\n') ADVANCE(774); - END_STATE(); - case 50: - if (lookahead == '\n') SKIP(253) - END_STATE(); - case 51: - if (lookahead == '\n') ADVANCE(768); - END_STATE(); - case 52: - if (lookahead == '\n') ADVANCE(777); - END_STATE(); - case 53: - if (lookahead == '\n') SKIP(219) - END_STATE(); - case 54: - if (lookahead == '\n') ADVANCE(764); - END_STATE(); - case 55: - if (lookahead == '\n') SKIP(217) - END_STATE(); - case 56: - if (lookahead == '\n') SKIP(223) - END_STATE(); - case 57: - if (lookahead == '\n') SKIP(220) - END_STATE(); - case 58: - if (lookahead == '\n') SKIP(199) - END_STATE(); - case 59: - if (lookahead == '\n') SKIP(216) - END_STATE(); - case 60: - if (lookahead == '\n') SKIP(182) - END_STATE(); - case 61: - if (lookahead == '\n') ADVANCE(765); - END_STATE(); - case 62: - if (lookahead == '\n') SKIP(222) - END_STATE(); - case 63: - if (lookahead == '\n') SKIP(142) - END_STATE(); - case 64: - if (lookahead == '\n') ADVANCE(579); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(311); - if (lookahead == '_') ADVANCE(790); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 65: - if (lookahead == '\n') ADVANCE(743); - END_STATE(); - case 66: - if (lookahead == '\n') ADVANCE(746); - END_STATE(); - case 67: - if (lookahead == '\n') SKIP(250) - END_STATE(); - case 68: - if (lookahead == '\n') ADVANCE(748); - END_STATE(); - case 69: - if (lookahead == '\n') ADVANCE(752); - END_STATE(); - case 70: - if (lookahead == '\n') SKIP(183) - END_STATE(); - case 71: - if (lookahead == '\n') SKIP(72) - END_STATE(); - case 72: - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(506); - if (lookahead == '+') ADVANCE(495); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(499); - if (lookahead == '/') ADVANCE(513); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(455); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '\\') SKIP(377) - if (lookahead == '^') ADVANCE(284); - if (lookahead == '|') ADVANCE(281); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(72) - END_STATE(); - case 73: - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(655); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '(') ADVANCE(538); - if (lookahead == '+') ADVANCE(276); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(278); - if (lookahead == '0') ADVANCE(678); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '\\') SKIP(382) - if (lookahead == '`') ADVANCE(717); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(73) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(680); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(542); - END_STATE(); - case 74: - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(273); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(280); - if (lookahead == '0') ADVANCE(679); - if (lookahead == '<') ADVANCE(524); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '\\') SKIP(391) - if (lookahead == '|') ADVANCE(549); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(74) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(681); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 75: - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '&') ADVANCE(631); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(384) - if (lookahead == '`') ADVANCE(287); - if (lookahead == 'e') ADVANCE(291); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(75) - END_STATE(); - case 76: - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '&') ADVANCE(628); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(392) - if (lookahead == '`') ADVANCE(287); - if (lookahead == 'i') ADVANCE(290); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(76) - END_STATE(); - case 77: - if (lookahead == '\n') SKIP(248) - END_STATE(); - case 78: - if (lookahead == '\n') SKIP(255) - END_STATE(); - case 79: - if (lookahead == '\n') ADVANCE(761); - END_STATE(); - case 80: - if (lookahead == '\n') SKIP(224) - END_STATE(); - case 81: - if (lookahead == '\n') SKIP(225) - END_STATE(); - case 82: - if (lookahead == '\n') ADVANCE(769); - END_STATE(); - case 83: - if (lookahead == '\n') ADVANCE(754); - END_STATE(); - case 84: - if (lookahead == '\n') ADVANCE(778); - END_STATE(); - case 85: - if (lookahead == '\n') ADVANCE(762); - END_STATE(); - case 86: - if (lookahead == '\n') ADVANCE(770); - END_STATE(); - case 87: - if (lookahead == '\n') ADVANCE(779); - END_STATE(); - case 88: - if (lookahead == '\n') SKIP(73) - END_STATE(); - case 89: - if (lookahead == '\n') SKIP(256) - END_STATE(); - case 90: - if (lookahead == '\n') SKIP(75) - END_STATE(); - case 91: - if (lookahead == '\n') SKIP(251) - END_STATE(); - case 92: - if (lookahead == '\n') SKIP(258) - END_STATE(); - case 93: - if (lookahead == '\n') SKIP(232) - END_STATE(); - case 94: - if (lookahead == '\n') SKIP(260) - END_STATE(); - case 95: - if (lookahead == '\n') SKIP(235) - END_STATE(); - case 96: - if (lookahead == '\n') ADVANCE(756); - END_STATE(); - case 97: - if (lookahead == '\n') ADVANCE(780); - END_STATE(); - case 98: - if (lookahead == '\n') ADVANCE(781); - END_STATE(); - case 99: - if (lookahead == '\n') SKIP(74) - END_STATE(); - case 100: - if (lookahead == '\n') ADVANCE(782); - END_STATE(); - case 101: - if (lookahead == '\n') ADVANCE(783); - END_STATE(); - case 102: - if (lookahead == '\n') SKIP(76) - END_STATE(); - case 103: - if (lookahead == '\n') SKIP(259) - END_STATE(); - case 104: - if (lookahead == '\n') SKIP(262) - END_STATE(); - case 105: - if (lookahead == '\n') SKIP(261) - END_STATE(); - case 106: - if (lookahead == '\n') SKIP(143) - END_STATE(); - case 107: - if (lookahead == '\n') SKIP(190) - END_STATE(); - case 108: - if (lookahead == '\n') SKIP(188) - END_STATE(); - case 109: - if (lookahead == '\n') ADVANCE(581); - if (lookahead == '!') ADVANCE(793); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(346); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(109) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 110: - if (lookahead == '\n') ADVANCE(745); - END_STATE(); - case 111: - if (lookahead == '\n') SKIP(146) - END_STATE(); - case 112: - if (lookahead == '\n') SKIP(208) - END_STATE(); - case 113: - if (lookahead == '\n') SKIP(176) - END_STATE(); - case 114: - if (lookahead == '\n') SKIP(177) - END_STATE(); - case 115: - if (lookahead == '\n') SKIP(170) - END_STATE(); - case 116: - if (lookahead == '\n') SKIP(172) - END_STATE(); - case 117: - if (lookahead == '\n') SKIP(179) - END_STATE(); - case 118: - if (lookahead == '\n') ADVANCE(749); - END_STATE(); - case 119: - if (lookahead == '\n') SKIP(174) - END_STATE(); - case 120: - if (lookahead == '\n') SKIP(178) - END_STATE(); - case 121: - if (lookahead == '\n') SKIP(180) - END_STATE(); - case 122: - if (lookahead == '\n') ADVANCE(757); - END_STATE(); - case 123: - if (lookahead == '\n') SKIP(181) - END_STATE(); - case 124: - if (lookahead == '\n') SKIP(247) - END_STATE(); - case 125: - if (lookahead == '\n') SKIP(241) - END_STATE(); - case 126: - if (lookahead == '\n') SKIP(245) - END_STATE(); - case 127: - if (lookahead == '\n') SKIP(238) - END_STATE(); - case 128: - if (lookahead == '\n') ADVANCE(776); - END_STATE(); - case 129: - if (lookahead == '\n') ADVANCE(772); - END_STATE(); - case 130: - if (lookahead == '\n') SKIP(254) - END_STATE(); - case 131: - if (lookahead == '\n') ADVANCE(750); - END_STATE(); - case 132: - if (lookahead == '\n') SKIP(184) - END_STATE(); - case 133: - if (lookahead == '\n') SKIP(249) - END_STATE(); - case 134: - if (lookahead == '\n') SKIP(191) - END_STATE(); - case 135: - if (lookahead == '\n') ADVANCE(582); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(350); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(728); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(135) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 136: - if (lookahead == '\n') SKIP(150) - END_STATE(); - case 137: - if (lookahead == '\n') SKIP(242) - END_STATE(); - case 138: - if (lookahead == '\n') ADVANCE(773); - END_STATE(); - case 139: - if (lookahead == '\n') ADVANCE(583); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(294); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(733); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(139) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 140: - if (lookahead == '\n') SKIP(154) - END_STATE(); - case 141: - if (lookahead == '\n') SKIP(239) - END_STATE(); - case 142: - if (lookahead == '\n') ADVANCE(584); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ':') ADVANCE(640); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(457); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(374); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(142) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0 && - lookahead != '&') ADVANCE(800); - END_STATE(); - case 143: - if (lookahead == '\n') ADVANCE(585); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(396); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(550); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(143) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 144: - if (lookahead == '\n') ADVANCE(586); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(329); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(144) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 145: - if (lookahead == '\n') ADVANCE(587); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(312); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(145) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 146: - if (lookahead == '\n') ADVANCE(588); - if (lookahead == '!') ADVANCE(793); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(399); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(146) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 147: - if (lookahead == '\n') ADVANCE(589); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(351); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(147) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 148: - if (lookahead == '\n') ADVANCE(590); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(295); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(148) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 149: - if (lookahead == '\n') ADVANCE(591); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(149) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 150: - if (lookahead == '\n') ADVANCE(592); - if (lookahead == '!') ADVANCE(793); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(418); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(150) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 151: - if (lookahead == '\n') ADVANCE(593); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(151) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 152: - if (lookahead == '\n') ADVANCE(594); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(152) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 153: - if (lookahead == '\n') ADVANCE(595); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(334); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(153) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 154: - if (lookahead == '\n') ADVANCE(596); - if (lookahead == '!') ADVANCE(793); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(420); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(154) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 155: - if (lookahead == '\n') ADVANCE(597); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(353); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(155) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 156: - if (lookahead == '\n') ADVANCE(598); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(296); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 157: - if (lookahead == '\n') ADVANCE(599); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(314); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(157) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 158: - if (lookahead == '\n') ADVANCE(600); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(354); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(158) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 159: - if (lookahead == '\n') ADVANCE(601); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(297); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(733); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(159) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 160: - if (lookahead == '\n') ADVANCE(602); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(317); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(160) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 161: - if (lookahead == '\n') ADVANCE(603); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(355); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(161) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 162: - if (lookahead == '\n') ADVANCE(604); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(298); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(162) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 163: - if (lookahead == '\n') ADVANCE(605); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(322); - if (lookahead == '_') ADVANCE(790); - if (lookahead == 'i') ADVANCE(738); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(163) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 164: - if (lookahead == '\n') ADVANCE(606); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(356); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(164) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 165: - if (lookahead == '\n') ADVANCE(607); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(331); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(165) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 166: - if (lookahead == '\n') ADVANCE(608); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(357); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(166) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 167: - if (lookahead == '\n') ADVANCE(609); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(167) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 168: - if (lookahead == '\n') ADVANCE(610); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(358); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(168) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 169: - if (lookahead == '\n') ADVANCE(611); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(300); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(169) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 170: - if (lookahead == '\n') ADVANCE(612); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(403); - if (lookahead == '`') ADVANCE(718); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(170) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 171: - if (lookahead == '\n') ADVANCE(613); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(302); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(171) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 172: - if (lookahead == '\n') ADVANCE(614); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(404); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(172) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 173: - if (lookahead == '\n') ADVANCE(615); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(315); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(173) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 174: - if (lookahead == '\n') ADVANCE(616); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(406); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(174) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 175: - if (lookahead == '\n') ADVANCE(617); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(319); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(175) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 176: - if (lookahead == '\n') ADVANCE(618); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(401); - if (lookahead == '`') ADVANCE(718); - if (lookahead == 'e') ADVANCE(728); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(176) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 177: - if (lookahead == '\n') ADVANCE(619); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(402); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(177) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 178: - if (lookahead == '\n') ADVANCE(620); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == '`') ADVANCE(718); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(178) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 179: - if (lookahead == '\n') ADVANCE(621); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(405); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(179) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 180: - if (lookahead == '\n') ADVANCE(622); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(408); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(180) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 181: - if (lookahead == '\n') ADVANCE(623); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(409); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(181) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 182: - if (lookahead == '\n') ADVANCE(624); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(372); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(798); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(182) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 183: - if (lookahead == '\n') ADVANCE(625); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(376); - if (lookahead == '`') ADVANCE(717); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(183) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 184: - if (lookahead == '\n') ADVANCE(626); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(415); - if (lookahead == '`') ADVANCE(718); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(184) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 185: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(687); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(514); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(503); - if (lookahead == '+') ADVANCE(643); - if (lookahead == ',') ADVANCE(711); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(509); - if (lookahead == '0') ADVANCE(785); - if (lookahead == ':') ADVANCE(638); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(336); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(713); - if (lookahead == '_') ADVANCE(788); - if (lookahead == '`') ADVANCE(718); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == 'i') ADVANCE(797); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '|') ADVANCE(550); - if (lookahead == '}') ADVANCE(689); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(185) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 186: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(342); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(550); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(186) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 187: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(530); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(536); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(552); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(187) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 188: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(530); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(536); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(398); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(552); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(188) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 189: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ':') ADVANCE(641); - if (lookahead == '<') ADVANCE(530); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(536); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(345); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(552); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(189) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 190: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(530); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(536); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(397); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(552); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(190) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 191: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(530); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(536); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(417); - if (lookahead == ']') ADVANCE(658); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(552); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(191) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 192: - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(293); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(192) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 193: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(265); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(337); - if (lookahead == ']' || - lookahead == '}') ADVANCE(657); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '|') ADVANCE(548); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(193) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 194: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(275); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(338); - if (lookahead == ']' || - lookahead == '}') ADVANCE(657); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(194) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ';' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 195: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(340); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '}') ADVANCE(657); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(195) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 196: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(349); - if (lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(196) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 197: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(265); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(341); - if (lookahead == ']' || - lookahead == '}') ADVANCE(657); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == '{') ADVANCE(557); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(197) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 198: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(343); - if (lookahead == ']') ADVANCE(657); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '}') ADVANCE(558); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(198) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 199: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(370); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(199) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 200: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ':') ADVANCE(640); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(457); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(309); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(200) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != '&') ADVANCE(800); - END_STATE(); - case 201: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(310); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(201) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 202: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(301); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(202) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 203: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(303); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(203) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 204: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(307); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(204) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 205: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(316); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(205) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 206: - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(320); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(206) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != '&' && - lookahead != ';' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 207: - if (lookahead == '!') ADVANCE(793); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(347); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(207) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 208: - if (lookahead == '!') ADVANCE(793); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(400); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(208) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 209: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(305); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(209) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 210: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(333); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(210) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 211: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(275); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(335); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(211) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 212: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ':') ADVANCE(637); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(306); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(212) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 213: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(304); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(213) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 214: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(332); - if (lookahead == ']') ADVANCE(286); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(214) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 215: - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(308); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(215) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 216: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(655); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == ':') ADVANCE(637); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') SKIP(371) - if (lookahead == ']') ADVANCE(286); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(552); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(216) - END_STATE(); - case 217: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == ':') ADVANCE(637); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(367) - if (lookahead == ']') ADVANCE(658); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '`') ADVANCE(287); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(217) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 218: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(513); - if (lookahead == ':') ADVANCE(637); - if (lookahead == ';') ADVANCE(265); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(366) - if (lookahead == '^') ADVANCE(633); - if (lookahead == '`') ADVANCE(287); - if (lookahead == 'e') ADVANCE(291); - if (lookahead == 'i') ADVANCE(290); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(219) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(646); - END_STATE(); - case 219: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == ':') ADVANCE(637); - if (lookahead == ';') ADVANCE(265); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(366) - if (lookahead == '^') ADVANCE(633); - if (lookahead == '`') ADVANCE(287); - if (lookahead == 'e') ADVANCE(291); - if (lookahead == 'i') ADVANCE(290); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(219) - END_STATE(); - case 220: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == ':') ADVANCE(637); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(369) - if (lookahead == '^') ADVANCE(633); - if (lookahead == '`') ADVANCE(287); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(220) - END_STATE(); - case 221: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') SKIP(373) - if (lookahead == '^') ADVANCE(633); - if (lookahead == '|') ADVANCE(552); - if (lookahead == '}') ADVANCE(649); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(222) - END_STATE(); - case 222: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') SKIP(373) - if (lookahead == '^') ADVANCE(633); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(222) - END_STATE(); - case 223: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(368) - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '`') ADVANCE(287); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(223) - END_STATE(); - case 224: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(263); - if (lookahead == '(') ADVANCE(538); - if (lookahead == ')') ADVANCE(275); - if (lookahead == '*') ADVANCE(506); - if (lookahead == '+') ADVANCE(495); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(499); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(455); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') SKIP(380) - if (lookahead == '^') ADVANCE(284); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '|') ADVANCE(281); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(224) - END_STATE(); - case 225: - if (lookahead == '!') ADVANCE(282); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(263); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(506); - if (lookahead == '+') ADVANCE(495); - if (lookahead == ',') ADVANCE(451); - if (lookahead == '-') ADVANCE(499); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(455); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '\\') SKIP(381) - if (lookahead == '^') ADVANCE(284); - if (lookahead == '|') ADVANCE(281); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(225) - END_STATE(); - case 226: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(318); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(226) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 227: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(321); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(227) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 228: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(323); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(548); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(228) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 229: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '/') ADVANCE(508); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(324); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(229) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 230: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(325); - if (lookahead == '_') ADVANCE(790); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(664); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (lookahead != 0 && - lookahead != '`') ADVANCE(668); - END_STATE(); - case 231: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(326); - if (lookahead == '_') ADVANCE(790); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(231) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 232: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(656); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '(') ADVANCE(538); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '0') ADVANCE(679); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(387) - if (lookahead == '`') ADVANCE(287); - if (lookahead == '|') ADVANCE(551); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(232) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(681); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 233: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(327); - if (lookahead == '_') ADVANCE(790); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(665); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '`') ADVANCE(668); - END_STATE(); - case 234: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(328); - if (lookahead == '_') ADVANCE(790); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(234) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 235: - if (lookahead == '!') ADVANCE(560); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(654); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '=') ADVANCE(453); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') SKIP(389) - if (lookahead == '_') ADVANCE(790); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(235) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 236: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(687); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(515); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '+') ADVANCE(496); - if (lookahead == ',') ADVANCE(711); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '/') ADVANCE(510); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ':') ADVANCE(638); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(457); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(348); - if (lookahead == '^') ADVANCE(713); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(236) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != '&') ADVANCE(800); - END_STATE(); - case 237: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(359); - if (lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '`') ADVANCE(717); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(237) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 238: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(413); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(548); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(238) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 239: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(421); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(548); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(239) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 240: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(364); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(240) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 241: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(411); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(241) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 242: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(419); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(242) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 243: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(361); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(243) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 244: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(363); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(244) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 245: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(412); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(245) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 246: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(360); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(246) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 247: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(410); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(247) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 248: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(378); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(248) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 249: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(416); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(249) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 250: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(375); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(798); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(250) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 251: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(655); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '(') ADVANCE(538); - if (lookahead == ')') ADVANCE(275); - if (lookahead == '+') ADVANCE(277); - if (lookahead == '-') ADVANCE(278); - if (lookahead == '0') ADVANCE(678); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(385) - if (lookahead == ']') ADVANCE(566); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(251) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(680); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(542); - END_STATE(); - case 252: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == ',') ADVANCE(711); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ':') ADVANCE(640); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(457); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(362); - if (lookahead == '^') ADVANCE(713); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(252) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != '&') ADVANCE(800); - END_STATE(); - case 253: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ':') ADVANCE(640); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(457); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(365); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(253) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != '&') ADVANCE(800); - END_STATE(); - case 254: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ':') ADVANCE(640); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(457); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') ADVANCE(414); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(254) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - lookahead != '&') ADVANCE(800); - END_STATE(); - case 255: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(725); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(379); - if (lookahead == '`') ADVANCE(717); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(255) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 256: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(725); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(383); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '`') ADVANCE(717); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(256) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 257: - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(661); - if (lookahead == '$') ADVANCE(653); - if (lookahead == '(') ADVANCE(667); - if (lookahead == '\\') ADVANCE(390); - if (lookahead == '`') ADVANCE(717); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(666); - if (lookahead != 0) ADVANCE(668); - END_STATE(); - case 258: - if (lookahead == '#') ADVANCE(687); - if (lookahead == '%') ADVANCE(516); - if (lookahead == '+') ADVANCE(493); - if (lookahead == ',') ADVANCE(452); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '/') ADVANCE(511); - if (lookahead == ':') ADVANCE(639); - if (lookahead == '=') ADVANCE(453); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') SKIP(386) - if (lookahead == '^') ADVANCE(634); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(258) - END_STATE(); - case 259: - if (lookahead == '#') ADVANCE(724); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '/') ADVANCE(508); - if (lookahead == '<') ADVANCE(524); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(657); - if (lookahead == '\\') SKIP(393) - if (lookahead == '`') ADVANCE(287); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(259) - END_STATE(); - case 260: - if (lookahead == '#') ADVANCE(724); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(388); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '`') ADVANCE(287); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(260) - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';') ADVANCE(800); - END_STATE(); - case 261: - if (lookahead == '#') ADVANCE(724); - if (lookahead == '+') ADVANCE(283); - if (lookahead == '=') ADVANCE(453); - if (lookahead == '[') ADVANCE(564); - if (lookahead == '\\') SKIP(395) - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(261) - END_STATE(); - case 262: - if (lookahead == '#') ADVANCE(724); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '\\') ADVANCE(394); - if (lookahead == '{') ADVANCE(557); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(262) - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - lookahead != '|' && - lookahead != '}') ADVANCE(800); - END_STATE(); - case 263: - if (lookahead == '&') ADVANCE(486); - if (lookahead == '=') ADVANCE(476); - END_STATE(); - case 264: - if (lookahead == '&') ADVANCE(486); - if (lookahead == '>') ADVANCE(571); - END_STATE(); - case 265: - if (lookahead == '&') ADVANCE(555); - if (lookahead == ';') ADVANCE(554); - END_STATE(); - case 266: - if (lookahead == '\'') ADVANCE(670); - if (lookahead != 0) ADVANCE(266); - END_STATE(); - case 267: - if (lookahead == '\'') ADVANCE(671); - if (lookahead == '\\') ADVANCE(268); - if (lookahead != 0) ADVANCE(267); - END_STATE(); - case 268: - if (lookahead == '\'') ADVANCE(672); - if (lookahead == '\\') ADVANCE(268); - if (lookahead != 0) ADVANCE(267); - END_STATE(); - case 269: - if (lookahead == '(') ADVANCE(446); - END_STATE(); - case 270: - if (lookahead == '(') ADVANCE(720); - END_STATE(); - case 271: - if (lookahead == '(') ADVANCE(721); - END_STATE(); - case 272: - if (lookahead == '(') ADVANCE(645); - END_STATE(); - case 273: - if (lookahead == '(') ADVANCE(272); - END_STATE(); - case 274: - if (lookahead == '(') ADVANCE(272); - if (lookahead == '{') ADVANCE(688); - END_STATE(); - case 275: - if (lookahead == ')') ADVANCE(447); - END_STATE(); - case 276: - if (lookahead == '+') ADVANCE(458); - END_STATE(); - case 277: - if (lookahead == '+') ADVANCE(458); - if (lookahead == '=') ADVANCE(462); - END_STATE(); - case 278: - if (lookahead == '-') ADVANCE(460); - if (lookahead == '0') ADVANCE(678); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(680); - END_STATE(); - case 279: - if (lookahead == '.') ADVANCE(647); - END_STATE(); - case 280: - if (lookahead == '0') ADVANCE(678); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(680); - END_STATE(); - case 281: - if (lookahead == '=') ADVANCE(479); - if (lookahead == '|') ADVANCE(487); - END_STATE(); - case 282: - if (lookahead == '=') ADVANCE(482); - END_STATE(); - case 283: - if (lookahead == '=') ADVANCE(462); - END_STATE(); - case 284: - if (lookahead == '=') ADVANCE(477); - END_STATE(); - case 285: - if (lookahead == '>') ADVANCE(571); - END_STATE(); - case 286: - if (lookahead == ']') ADVANCE(568); - END_STATE(); - case 287: - if (lookahead == '`') ADVANCE(650); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(287); - END_STATE(); - case 288: - if (lookahead == 'a') ADVANCE(289); - END_STATE(); - case 289: - if (lookahead == 'c') ADVANCE(543); - END_STATE(); - case 290: - if (lookahead == 'n') ADVANCE(443); - END_STATE(); - case 291: - if (lookahead == 's') ADVANCE(288); - END_STATE(); - case 292: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(12) - if (lookahead == '\n') ADVANCE(742); - if (lookahead == '\r') ADVANCE(13); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 293: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(192) - if (lookahead == '\n') ADVANCE(763); - if (lookahead == '\r') ADVANCE(18); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 294: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(139) - if (lookahead == '\n') ADVANCE(744); - if (lookahead == '\r') ADVANCE(27); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 295: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(148) - if (lookahead == '\n') ADVANCE(747); - if (lookahead == '\r') ADVANCE(28); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 296: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(156) - if (lookahead == '\n') ADVANCE(751); - if (lookahead == '\r') ADVANCE(32); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 297: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(159) - if (lookahead == '\n') ADVANCE(753); - if (lookahead == '\r') ADVANCE(33); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 298: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(162) - if (lookahead == '\n') ADVANCE(755); - if (lookahead == '\r') ADVANCE(34); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 299: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(167) - if (lookahead == '\n') ADVANCE(758); - if (lookahead == '\r') ADVANCE(36); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 300: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(169) - if (lookahead == '\n') ADVANCE(759); - if (lookahead == '\r') ADVANCE(41); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 301: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(202) - if (lookahead == '\n') ADVANCE(766); - if (lookahead == '\r') ADVANCE(43); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 302: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(171) - if (lookahead == '\n') ADVANCE(760); - if (lookahead == '\r') ADVANCE(44); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 303: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(203) - if (lookahead == '\n') ADVANCE(767); - if (lookahead == '\r') ADVANCE(45); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 304: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(213) - if (lookahead == '\n') ADVANCE(775); - if (lookahead == '\r') ADVANCE(47); - END_STATE(); - case 305: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(209) - if (lookahead == '\n') ADVANCE(771); - if (lookahead == '\r') ADVANCE(48); - END_STATE(); - case 306: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(212) - if (lookahead == '\n') ADVANCE(774); - if (lookahead == '\r') ADVANCE(49); - END_STATE(); - case 307: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(204) - if (lookahead == '\n') ADVANCE(768); - if (lookahead == '\r') ADVANCE(51); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 308: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(215) - if (lookahead == '\n') ADVANCE(777); - if (lookahead == '\r') ADVANCE(52); - END_STATE(); - case 309: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(200) - if (lookahead == '\n') ADVANCE(764); - if (lookahead == '\r') ADVANCE(54); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 310: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(201) - if (lookahead == '\n') ADVANCE(765); - if (lookahead == '\r') ADVANCE(61); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 311: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(64) - if (lookahead == '\n') ADVANCE(743); - if (lookahead == '\r') ADVANCE(65); - END_STATE(); - case 312: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(145) - if (lookahead == '\n') ADVANCE(746); - if (lookahead == '\r') ADVANCE(66); - END_STATE(); - case 313: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(149) - if (lookahead == '\n') ADVANCE(748); - if (lookahead == '\r') ADVANCE(68); - END_STATE(); - case 314: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(157) - if (lookahead == '\n') ADVANCE(752); - if (lookahead == '\r') ADVANCE(69); - END_STATE(); - case 315: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(173) - if (lookahead == '\n') ADVANCE(761); - if (lookahead == '\r') ADVANCE(79); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 316: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(205) - if (lookahead == '\n') ADVANCE(769); - if (lookahead == '\r') ADVANCE(82); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 317: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(160) - if (lookahead == '\n') ADVANCE(754); - if (lookahead == '\r') ADVANCE(83); - END_STATE(); - case 318: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(226) - if (lookahead == '\n') ADVANCE(778); - if (lookahead == '\r') ADVANCE(84); - END_STATE(); - case 319: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(175) - if (lookahead == '\n') ADVANCE(762); - if (lookahead == '\r') ADVANCE(85); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 320: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(206) - if (lookahead == '\n') ADVANCE(770); - if (lookahead == '\r') ADVANCE(86); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 321: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(227) - if (lookahead == '\n') ADVANCE(779); - if (lookahead == '\r') ADVANCE(87); - END_STATE(); - case 322: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(163) - if (lookahead == '\n') ADVANCE(756); - if (lookahead == '\r') ADVANCE(96); - END_STATE(); - case 323: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(228) - if (lookahead == '\n') ADVANCE(780); - if (lookahead == '\r') ADVANCE(97); - END_STATE(); - case 324: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(229) - if (lookahead == '\n') ADVANCE(781); - if (lookahead == '\r') ADVANCE(98); - END_STATE(); - case 325: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') ADVANCE(664); - if (lookahead == '\n') ADVANCE(664); - if (lookahead == '\r') ADVANCE(662); - if (lookahead != 0) ADVANCE(668); - END_STATE(); - case 326: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(231) - if (lookahead == '\n') ADVANCE(782); - if (lookahead == '\r') ADVANCE(100); - END_STATE(); - case 327: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') ADVANCE(665); - if (lookahead == '\n') ADVANCE(665); - if (lookahead == '\r') ADVANCE(663); - if (lookahead != 0) ADVANCE(668); - END_STATE(); - case 328: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(234) - if (lookahead == '\n') ADVANCE(783); - if (lookahead == '\r') ADVANCE(101); - END_STATE(); - case 329: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(144) - if (lookahead == '\n') ADVANCE(745); - if (lookahead == '\r') ADVANCE(110); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 330: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(152) - if (lookahead == '\n') ADVANCE(749); - if (lookahead == '\r') ADVANCE(118); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 331: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(165) - if (lookahead == '\n') ADVANCE(757); - if (lookahead == '\r') ADVANCE(122); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 332: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(214) - if (lookahead == '\n') ADVANCE(776); - if (lookahead == '\r') ADVANCE(128); - END_STATE(); - case 333: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(210) - if (lookahead == '\n') ADVANCE(772); - if (lookahead == '\r') ADVANCE(129); - END_STATE(); - case 334: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(153) - if (lookahead == '\n') ADVANCE(750); - if (lookahead == '\r') ADVANCE(131); - END_STATE(); - case 335: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(211) - if (lookahead == '\n') ADVANCE(773); - if (lookahead == '\r') ADVANCE(138); - END_STATE(); - case 336: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(185) - if (lookahead == '\r') SKIP(1) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 337: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(193) - if (lookahead == '\r') SKIP(2) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 338: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(194) - if (lookahead == '\r') SKIP(3) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 339: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(5) - if (lookahead == '\r') SKIP(4) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 340: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(195) - if (lookahead == '\r') SKIP(6) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 341: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(197) - if (lookahead == '\r') SKIP(7) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 342: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(186) - if (lookahead == '\r') SKIP(8) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 343: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(198) - if (lookahead == '\r') SKIP(9) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 344: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(187) - if (lookahead == '\r') SKIP(10) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 345: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(189) - if (lookahead == '\r') SKIP(11) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 346: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(109) - if (lookahead == '\r') SKIP(17) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 347: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(207) - if (lookahead == '\r') SKIP(19) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 348: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(236) - if (lookahead == '\r') SKIP(20) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 349: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(196) - if (lookahead == '\r') SKIP(21) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 350: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(135) - if (lookahead == '\r') SKIP(22) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 351: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(147) - if (lookahead == '\r') SKIP(23) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 352: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(151) - if (lookahead == '\r') SKIP(24) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 353: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(155) - if (lookahead == '\r') SKIP(25) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 354: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(158) - if (lookahead == '\r') SKIP(26) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 355: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(161) - if (lookahead == '\r') SKIP(29) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 356: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(164) - if (lookahead == '\r') SKIP(30) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 357: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(166) - if (lookahead == '\r') SKIP(31) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 358: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(168) - if (lookahead == '\r') SKIP(35) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 359: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(237) - if (lookahead == '\r') SKIP(37) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 360: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(246) - if (lookahead == '\r') SKIP(38) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 361: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(243) - if (lookahead == '\r') SKIP(39) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 362: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(252) - if (lookahead == '\r') SKIP(40) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 363: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(244) - if (lookahead == '\r') SKIP(42) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 364: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(240) - if (lookahead == '\r') SKIP(46) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 365: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(253) - if (lookahead == '\r') SKIP(50) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 366: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(219) - if (lookahead == '\r') SKIP(53) - END_STATE(); - case 367: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(217) - if (lookahead == '\r') SKIP(55) - END_STATE(); - case 368: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(223) - if (lookahead == '\r') SKIP(56) - END_STATE(); - case 369: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(220) - if (lookahead == '\r') SKIP(57) - END_STATE(); - case 370: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(199) - if (lookahead == '\r') SKIP(58) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 371: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(216) - if (lookahead == '\r') SKIP(59) - END_STATE(); - case 372: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(182) - if (lookahead == '\r') SKIP(60) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 373: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(222) - if (lookahead == '\r') SKIP(62) - END_STATE(); - case 374: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(142) - if (lookahead == '\r') SKIP(63) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 375: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(250) - if (lookahead == '\r') SKIP(67) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 376: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(183) - if (lookahead == '\r') SKIP(70) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 377: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(72) - if (lookahead == '\r') SKIP(71) - END_STATE(); - case 378: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(248) - if (lookahead == '\r') SKIP(77) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 379: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(255) - if (lookahead == '\r') SKIP(78) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 380: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(224) - if (lookahead == '\r') SKIP(80) - END_STATE(); - case 381: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(225) - if (lookahead == '\r') SKIP(81) - END_STATE(); - case 382: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(73) - if (lookahead == '\r') SKIP(88) - END_STATE(); - case 383: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(256) - if (lookahead == '\r') SKIP(89) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 384: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(75) - if (lookahead == '\r') SKIP(90) - END_STATE(); - case 385: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(251) - if (lookahead == '\r') SKIP(91) - END_STATE(); - case 386: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(258) - if (lookahead == '\r') SKIP(92) - END_STATE(); - case 387: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(232) - if (lookahead == '\r') SKIP(93) - END_STATE(); - case 388: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(260) - if (lookahead == '\r') SKIP(94) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 389: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(235) - if (lookahead == '\r') SKIP(95) - END_STATE(); - case 390: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(666); - if (lookahead == '\r') ADVANCE(660); - if (lookahead != 0) ADVANCE(668); - END_STATE(); - case 391: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(74) - if (lookahead == '\r') SKIP(99) - END_STATE(); - case 392: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(76) - if (lookahead == '\r') SKIP(102) - END_STATE(); - case 393: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(259) - if (lookahead == '\r') SKIP(103) - END_STATE(); - case 394: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(262) - if (lookahead == '\r') SKIP(104) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 395: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(261) - if (lookahead == '\r') SKIP(105) - END_STATE(); - case 396: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(143) - if (lookahead == '\r') SKIP(106) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 397: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(190) - if (lookahead == '\r') SKIP(107) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 398: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(188) - if (lookahead == '\r') SKIP(108) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 399: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(146) - if (lookahead == '\r') SKIP(111) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 400: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(208) - if (lookahead == '\r') SKIP(112) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 401: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(176) - if (lookahead == '\r') SKIP(113) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 402: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(177) - if (lookahead == '\r') SKIP(114) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 403: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(170) - if (lookahead == '\r') SKIP(115) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 404: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(172) - if (lookahead == '\r') SKIP(116) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 405: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(179) - if (lookahead == '\r') SKIP(117) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 406: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(174) - if (lookahead == '\r') SKIP(119) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 407: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(178) - if (lookahead == '\r') SKIP(120) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 408: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(180) - if (lookahead == '\r') SKIP(121) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 409: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(181) - if (lookahead == '\r') SKIP(123) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 410: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(247) - if (lookahead == '\r') SKIP(124) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 411: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(241) - if (lookahead == '\r') SKIP(125) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 412: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(245) - if (lookahead == '\r') SKIP(126) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 413: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(238) - if (lookahead == '\r') SKIP(127) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 414: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(254) - if (lookahead == '\r') SKIP(130) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 415: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(184) - if (lookahead == '\r') SKIP(132) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 416: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(249) - if (lookahead == '\r') SKIP(133) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 417: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(191) - if (lookahead == '\r') SKIP(134) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 418: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(150) - if (lookahead == '\r') SKIP(136) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 419: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(242) - if (lookahead == '\r') SKIP(137) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 420: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(154) - if (lookahead == '\r') SKIP(140) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 421: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(239) - if (lookahead == '\r') SKIP(141) - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 422: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(680); - END_STATE(); - case 423: - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(800); - END_STATE(); - case 424: - if (lookahead != 0 && - lookahead != '\r') ADVANCE(668); - if (lookahead == '\r') ADVANCE(669); - END_STATE(); - case 425: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(274); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(280); - if (lookahead == '0') ADVANCE(679); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(440) - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(425) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(681); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 426: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '&') ADVANCE(631); - if (lookahead == ')') ADVANCE(540); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') SKIP(441) - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(426) - END_STATE(); - case 427: - if (eof) ADVANCE(442); - if (lookahead == '\n') SKIP(425) - END_STATE(); - case 428: - if (eof) ADVANCE(442); - if (lookahead == '\n') SKIP(426) - END_STATE(); - case 429: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(594); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(429) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 430: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(595); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(334); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(430) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 431: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(600); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(354); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(431) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 432: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(603); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(355); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(432) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 433: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(607); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(331); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(433) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')') ADVANCE(800); - END_STATE(); - case 434: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(610); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(358); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(434) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 435: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(616); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(406); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(435) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 436: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(621); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(674); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(405); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(436) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 437: - if (eof) ADVANCE(442); - if (lookahead == '\n') ADVANCE(623); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(657); - if (lookahead == '\\') ADVANCE(409); - if (lookahead == '`') ADVANCE(718); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(437) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 438: - if (eof) ADVANCE(442); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(687); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(514); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(503); - if (lookahead == '+') ADVANCE(643); - if (lookahead == ',') ADVANCE(711); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '/') ADVANCE(509); - if (lookahead == '0') ADVANCE(785); - if (lookahead == ':') ADVANCE(638); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(336); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(713); - if (lookahead == '_') ADVANCE(788); - if (lookahead == '`') ADVANCE(718); - if (lookahead == 'e') ADVANCE(798); - if (lookahead == 'i') ADVANCE(797); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '|') ADVANCE(550); - if (lookahead == '}') ADVANCE(689); - if (lookahead == '~') ADVANCE(642); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(438) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 439: - if (eof) ADVANCE(442); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(724); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '0') ADVANCE(673); - if (lookahead == ';') ADVANCE(265); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '[') ADVANCE(565); - if (lookahead == '\\') ADVANCE(337); - if (lookahead == ']' || - lookahead == '}') ADVANCE(657); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '{') ADVANCE(557); - if (lookahead == '|') ADVANCE(548); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(439) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (lookahead != 0) ADVANCE(800); - END_STATE(); - case 440: - if (eof) ADVANCE(442); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(425) - if (lookahead == '\r') SKIP(427) - END_STATE(); - case 441: - if (eof) ADVANCE(442); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(426) - if (lookahead == '\r') SKIP(428) - END_STATE(); - case 442: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 443: - ACCEPT_TOKEN(anon_sym_in); - END_STATE(); - case 444: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 445: - ACCEPT_TOKEN(anon_sym_in); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 446: - ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); - END_STATE(); - case 447: - ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); - END_STATE(); - case 448: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 449: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == '&') ADVANCE(555); - if (lookahead == ';') ADVANCE(554); - END_STATE(); - case 450: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(553); - END_STATE(); - case 451: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 452: - ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == ',') ADVANCE(707); - END_STATE(); - case 453: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 454: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(481); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == '~') ADVANCE(570); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); - END_STATE(); - case 455: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(480); - END_STATE(); - case 456: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(480); - if (lookahead == '~') ADVANCE(569); - END_STATE(); - case 457: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 458: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - END_STATE(); - case 459: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 460: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - END_STATE(); - case 461: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 462: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 463: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 464: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - END_STATE(); - case 465: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 466: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - END_STATE(); - case 467: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 468: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); - END_STATE(); - case 469: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 470: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - END_STATE(); - case 471: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 472: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); - END_STATE(); - case 473: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 474: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); - END_STATE(); - case 475: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); - END_STATE(); - case 476: - ACCEPT_TOKEN(anon_sym_AMP_EQ); - END_STATE(); - case 477: - ACCEPT_TOKEN(anon_sym_CARET_EQ); - END_STATE(); - case 478: - ACCEPT_TOKEN(anon_sym_CARET_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 479: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); - END_STATE(); - case 480: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - END_STATE(); - case 481: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 482: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - END_STATE(); - case 483: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 484: - ACCEPT_TOKEN(anon_sym_LT_EQ); - END_STATE(); - case 485: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 486: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 487: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 488: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(576); - if (lookahead == '<') ADVANCE(627); - END_STATE(); - case 489: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(576); - if (lookahead == '<') ADVANCE(627); - if (lookahead == '=') ADVANCE(474); - END_STATE(); - case 490: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(474); - END_STATE(); - case 491: - ACCEPT_TOKEN(anon_sym_GT_GT); - END_STATE(); - case 492: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(475); - END_STATE(); - case 493: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 494: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(459); - if (lookahead == '=') ADVANCE(463); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); - END_STATE(); - case 495: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(458); - if (lookahead == '=') ADVANCE(462); - END_STATE(); - case 496: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 497: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 498: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(461); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '=') ADVANCE(465); - if (lookahead == '\\') ADVANCE(423); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); - if (!sym_word_character_set_3(lookahead)) ADVANCE(800); - END_STATE(); - case 499: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(460); - if (lookahead == '=') ADVANCE(464); - END_STATE(); - case 500: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(460); - if (lookahead == '=') ADVANCE(464); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); - END_STATE(); - case 501: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '\\') ADVANCE(423); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 502: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 503: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(521); - if (lookahead == '=') ADVANCE(467); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); - END_STATE(); - case 504: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(523); - if (lookahead == '=') ADVANCE(467); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); - END_STATE(); - case 505: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(520); - if (lookahead == '=') ADVANCE(466); - END_STATE(); - case 506: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(522); - if (lookahead == '=') ADVANCE(466); - END_STATE(); - case 507: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 508: - ACCEPT_TOKEN(anon_sym_SLASH); - END_STATE(); - case 509: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(704); - if (lookahead == '%') ADVANCE(706); - if (lookahead == '/') ADVANCE(702); - if (lookahead == '=') ADVANCE(469); - if (lookahead == '\\') ADVANCE(423); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - (lookahead < '"' || ')' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 510: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(704); - if (lookahead == '%') ADVANCE(706); - if (lookahead == '/') ADVANCE(702); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_5(lookahead)) ADVANCE(800); - END_STATE(); - case 511: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(703); - if (lookahead == '%') ADVANCE(705); - if (lookahead == '/') ADVANCE(701); - END_STATE(); - case 512: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(469); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); - END_STATE(); - case 513: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(468); - END_STATE(); - case 514: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(700); - if (lookahead == '=') ADVANCE(471); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_6(lookahead)) ADVANCE(800); - END_STATE(); - case 515: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(700); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_7(lookahead)) ADVANCE(800); - END_STATE(); - case 516: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(699); - END_STATE(); - case 517: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(471); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); - END_STATE(); - case 518: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(470); - END_STATE(); - case 519: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 520: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - END_STATE(); - case 521: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(473); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); - END_STATE(); - case 522: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(472); - END_STATE(); - case 523: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 524: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(573); - END_STATE(); - case 525: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(573); - if (lookahead == '(') ADVANCE(720); - END_STATE(); - case 526: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(573); - if (lookahead == '(') ADVANCE(720); - if (lookahead == '<') ADVANCE(489); - if (lookahead == '=') ADVANCE(484); - END_STATE(); - case 527: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(573); - if (lookahead == '(') ADVANCE(720); - if (lookahead == '<') ADVANCE(488); - END_STATE(); - case 528: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(573); - if (lookahead == '<') ADVANCE(488); - END_STATE(); - case 529: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '(') ADVANCE(720); - END_STATE(); - case 530: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '(') ADVANCE(720); - if (lookahead == '<') ADVANCE(490); - if (lookahead == '=') ADVANCE(484); - END_STATE(); - case 531: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(490); - if (lookahead == '=') ADVANCE(484); - END_STATE(); - case 532: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(574); - if (lookahead == '(') ADVANCE(721); - if (lookahead == '=') ADVANCE(485); - if (lookahead == '>') ADVANCE(492); - if (lookahead == '|') ADVANCE(575); - END_STATE(); - case 533: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(574); - if (lookahead == '(') ADVANCE(721); - if (lookahead == '>') ADVANCE(491); - if (lookahead == '|') ADVANCE(575); - END_STATE(); - case 534: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(574); - if (lookahead == '>') ADVANCE(491); - if (lookahead == '|') ADVANCE(575); - END_STATE(); - case 535: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '(') ADVANCE(721); - END_STATE(); - case 536: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '(') ADVANCE(721); - if (lookahead == '=') ADVANCE(485); - if (lookahead == '>') ADVANCE(492); - END_STATE(); - case 537: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(485); - if (lookahead == '>') ADVANCE(492); - END_STATE(); - case 538: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 539: - ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '(') ADVANCE(446); - END_STATE(); - case 540: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 541: - ACCEPT_TOKEN(anon_sym_RPAREN); - if (lookahead == ')') ADVANCE(447); - END_STATE(); - case 542: - ACCEPT_TOKEN(aux_sym__c_word_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(542); - END_STATE(); - case 543: - ACCEPT_TOKEN(anon_sym_esac); - END_STATE(); - case 544: - ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(423); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 545: - ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 546: - ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 547: - ACCEPT_TOKEN(anon_sym_esac); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 548: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 549: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(559); - END_STATE(); - case 550: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '=') ADVANCE(479); - if (lookahead == '|') ADVANCE(487); - END_STATE(); - case 551: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '|') ADVANCE(487); - END_STATE(); - case 552: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(479); - if (lookahead == '|') ADVANCE(487); - END_STATE(); - case 553: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - END_STATE(); - case 554: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - if (lookahead == '&') ADVANCE(556); - END_STATE(); - case 555: - ACCEPT_TOKEN(anon_sym_SEMI_AMP); - END_STATE(); - case 556: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); - END_STATE(); - case 557: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 558: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 559: - ACCEPT_TOKEN(anon_sym_PIPE_AMP); - END_STATE(); - case 560: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 561: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(483); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); - END_STATE(); - case 562: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(482); - END_STATE(); - case 563: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 564: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 565: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(567); - END_STATE(); - case 566: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 567: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); - END_STATE(); - case 568: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); - END_STATE(); - case 569: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - END_STATE(); - case 570: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 571: - ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') ADVANCE(572); - END_STATE(); - case 572: - ACCEPT_TOKEN(anon_sym_AMP_GT_GT); - END_STATE(); - case 573: - ACCEPT_TOKEN(anon_sym_LT_AMP); - END_STATE(); - case 574: - ACCEPT_TOKEN(anon_sym_GT_AMP); - END_STATE(); - case 575: - ACCEPT_TOKEN(anon_sym_GT_PIPE); - END_STATE(); - case 576: - ACCEPT_TOKEN(anon_sym_LT_LT_DASH); - END_STATE(); - case 577: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(577); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '\\') ADVANCE(339); - if (lookahead == '~') ADVANCE(642); - END_STATE(); - case 578: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(578); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '\\') ADVANCE(292); - END_STATE(); - case 579: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(579); - if (lookahead == '\\') ADVANCE(311); - END_STATE(); - case 580: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(580); - END_STATE(); - case 581: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(581); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '\\') ADVANCE(346); - END_STATE(); - case 582: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(582); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(350); - END_STATE(); - case 583: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(583); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(294); - END_STATE(); - case 584: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(584); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(374); - END_STATE(); - case 585: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(585); - if (lookahead == '+') ADVANCE(643); - if (lookahead == '-') ADVANCE(644); - if (lookahead == '\\') ADVANCE(396); - if (lookahead == '~') ADVANCE(642); - END_STATE(); - case 586: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(586); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '\\') ADVANCE(329); - END_STATE(); - case 587: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(587); - if (lookahead == '\\') ADVANCE(312); - END_STATE(); - case 588: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(588); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '\\') ADVANCE(399); - END_STATE(); - case 589: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(589); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(351); - END_STATE(); - case 590: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(590); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(295); - END_STATE(); - case 591: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(591); - if (lookahead == '\\') ADVANCE(313); - END_STATE(); - case 592: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(592); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '\\') ADVANCE(418); - END_STATE(); - case 593: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(593); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(352); - END_STATE(); - case 594: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(594); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(330); - END_STATE(); - case 595: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(595); - if (lookahead == '\\') ADVANCE(334); - END_STATE(); - case 596: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(596); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '\\') ADVANCE(420); - END_STATE(); - case 597: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(597); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(353); - END_STATE(); - case 598: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(598); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(296); - END_STATE(); - case 599: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(599); - if (lookahead == '\\') ADVANCE(314); - END_STATE(); - case 600: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(600); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(354); - END_STATE(); - case 601: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(601); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(297); - END_STATE(); - case 602: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(602); - if (lookahead == '\\') ADVANCE(317); - END_STATE(); - case 603: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(603); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(355); - END_STATE(); - case 604: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(604); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(298); - END_STATE(); - case 605: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(605); - if (lookahead == '\\') ADVANCE(322); - END_STATE(); - case 606: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(606); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(356); - END_STATE(); - case 607: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(607); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(331); - END_STATE(); - case 608: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(608); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(357); - END_STATE(); - case 609: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(609); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(299); - END_STATE(); - case 610: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(610); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(358); - END_STATE(); - case 611: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(611); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(300); - END_STATE(); - case 612: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(612); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(403); - END_STATE(); - case 613: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(613); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(302); - END_STATE(); - case 614: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(614); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(404); - END_STATE(); - case 615: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(615); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(315); - END_STATE(); - case 616: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(616); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(406); - END_STATE(); - case 617: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(617); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '\\') ADVANCE(319); - END_STATE(); - case 618: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(618); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(401); - END_STATE(); - case 619: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(619); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(402); - END_STATE(); - case 620: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(620); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(407); - END_STATE(); - case 621: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(621); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(405); - END_STATE(); - case 622: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(622); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(408); - END_STATE(); - case 623: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(623); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(409); - END_STATE(); - case 624: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(624); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(372); - END_STATE(); - case 625: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(625); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(376); - END_STATE(); - case 626: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(626); - if (lookahead == '-') ADVANCE(792); - if (lookahead == '\\') ADVANCE(415); - END_STATE(); - case 627: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); - END_STATE(); - case 628: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 629: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(486); - if (lookahead == '=') ADVANCE(476); - END_STATE(); - case 630: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(486); - if (lookahead == '=') ADVANCE(476); - if (lookahead == '>') ADVANCE(571); - END_STATE(); - case 631: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(486); - if (lookahead == '>') ADVANCE(571); - END_STATE(); - case 632: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(478); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); - END_STATE(); - case 633: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(477); - END_STATE(); - case 634: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '^') ADVANCE(708); - END_STATE(); - case 635: - ACCEPT_TOKEN(anon_sym_QMARK); - END_STATE(); - case 636: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 637: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 638: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '+') ADVANCE(695); - if (lookahead == '-') ADVANCE(693); - if (lookahead == '=') ADVANCE(691); - if (lookahead == '?') ADVANCE(697); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); - END_STATE(); - case 639: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '+') ADVANCE(694); - if (lookahead == '-') ADVANCE(692); - if (lookahead == '=') ADVANCE(690); - if (lookahead == '?') ADVANCE(696); - END_STATE(); - case 640: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '-') ADVANCE(693); - if (lookahead == '?') ADVANCE(697); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 641: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 642: - ACCEPT_TOKEN(aux_sym_unary_expression_token1); - END_STATE(); - case 643: - ACCEPT_TOKEN(aux_sym_unary_expression_token1); - if (lookahead == '+') ADVANCE(642); - END_STATE(); - case 644: - ACCEPT_TOKEN(aux_sym_unary_expression_token1); - if (lookahead == '-') ADVANCE(642); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); - END_STATE(); - case 645: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); - END_STATE(); - case 646: - ACCEPT_TOKEN(aux_sym_brace_expression_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(646); - END_STATE(); - case 647: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - END_STATE(); - case 648: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 649: - ACCEPT_TOKEN(anon_sym_RBRACE2); - END_STATE(); - case 650: - ACCEPT_TOKEN(aux_sym_concatenation_token1); - END_STATE(); - case 651: - ACCEPT_TOKEN(anon_sym_DOLLAR); - END_STATE(); - case 652: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(267); - if (lookahead == '(') ADVANCE(716); - if (lookahead == '`') ADVANCE(719); - if (lookahead == '{') ADVANCE(688); - END_STATE(); - case 653: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(716); - if (lookahead == '`') ADVANCE(719); - if (lookahead == '{') ADVANCE(688); - END_STATE(); - case 654: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(715); - if (lookahead == '`') ADVANCE(719); - END_STATE(); - case 655: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(715); - if (lookahead == '`') ADVANCE(719); - if (lookahead == '{') ADVANCE(688); - END_STATE(); - case 656: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') ADVANCE(688); - END_STATE(); - case 657: - ACCEPT_TOKEN(sym__special_character); - END_STATE(); - case 658: - ACCEPT_TOKEN(sym__special_character); - if (lookahead == ']') ADVANCE(568); - END_STATE(); - case 659: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 660: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(666); - if (lookahead == '\\') ADVANCE(424); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(668); - END_STATE(); - case 661: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(668); - if (lookahead == '\\') ADVANCE(722); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(661); - END_STATE(); - case 662: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(664); - if (lookahead == '\\') ADVANCE(424); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(668); - END_STATE(); - case 663: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(665); - if (lookahead == '\\') ADVANCE(424); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(668); - END_STATE(); - case 664: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(325); - if (lookahead == '_') ADVANCE(790); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(664); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (lookahead != 0 && - lookahead != '`') ADVANCE(668); - END_STATE(); - case 665: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(327); - if (lookahead == '_') ADVANCE(790); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(665); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '`') ADVANCE(668); - END_STATE(); - case 666: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(661); - if (lookahead == '$') ADVANCE(653); - if (lookahead == '(') ADVANCE(667); - if (lookahead == '\\') ADVANCE(390); - if (lookahead == '`') ADVANCE(717); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(666); - if (lookahead != 0) ADVANCE(668); - END_STATE(); - case 667: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '(') ADVANCE(446); - if (lookahead == '\\') ADVANCE(424); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(668); - END_STATE(); - case 668: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\\') ADVANCE(424); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(668); - END_STATE(); - case 669: - ACCEPT_TOKEN(sym__string_content); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\' && - lookahead != '`') ADVANCE(668); - if (lookahead == '\\') ADVANCE(424); - END_STATE(); - case 670: - ACCEPT_TOKEN(sym_raw_string); - END_STATE(); - case 671: - ACCEPT_TOKEN(sym_ansi_c_string); - END_STATE(); - case 672: - ACCEPT_TOKEN(sym_ansi_c_string); - if (lookahead == '\'') ADVANCE(671); - if (lookahead == '\\') ADVANCE(268); - if (lookahead != 0) ADVANCE(267); - END_STATE(); - case 673: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(684); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'x') ADVANCE(799); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (!sym_word_character_set_8(lookahead)) ADVANCE(800); - END_STATE(); - case 674: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(684); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'x') ADVANCE(729); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_9(lookahead)) ADVANCE(800); - END_STATE(); - case 675: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(684); - if (lookahead == '\\') ADVANCE(423); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (!sym_word_character_set_8(lookahead)) ADVANCE(800); - END_STATE(); - case 676: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(684); - if (lookahead == '\\') ADVANCE(423); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_9(lookahead)) ADVANCE(800); - END_STATE(); - case 677: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(684); - if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_9(lookahead)) ADVANCE(800); - END_STATE(); - case 678: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(685); - if (lookahead == 'x') ADVANCE(422); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(680); - END_STATE(); - case 679: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(685); - if (lookahead == 'x') ADVANCE(740); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(681); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 680: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(680); - END_STATE(); - case 681: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(681); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 682: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '\\') ADVANCE(423); - if (('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(682); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 683: - ACCEPT_TOKEN(aux_sym_number_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(683); - END_STATE(); - case 684: - ACCEPT_TOKEN(aux_sym_number_token2); - if (lookahead == '\\') ADVANCE(423); - if (('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(682); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 685: - ACCEPT_TOKEN(aux_sym_number_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(683); - END_STATE(); - case 686: - ACCEPT_TOKEN(anon_sym_POUND); - END_STATE(); - case 687: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '#') ADVANCE(698); - END_STATE(); - case 688: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); - END_STATE(); - case 689: - ACCEPT_TOKEN(anon_sym_RBRACE3); - END_STATE(); - case 690: - ACCEPT_TOKEN(anon_sym_COLON_EQ); - END_STATE(); - case 691: - ACCEPT_TOKEN(anon_sym_COLON_EQ); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 692: - ACCEPT_TOKEN(anon_sym_COLON_DASH); - END_STATE(); - case 693: - ACCEPT_TOKEN(anon_sym_COLON_DASH); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 694: - ACCEPT_TOKEN(anon_sym_COLON_PLUS); - END_STATE(); - case 695: - ACCEPT_TOKEN(anon_sym_COLON_PLUS); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 696: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); - END_STATE(); - case 697: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 698: - ACCEPT_TOKEN(anon_sym_POUND_POUND); - END_STATE(); - case 699: - ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); - END_STATE(); - case 700: - ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 701: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - END_STATE(); - case 702: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 703: - ACCEPT_TOKEN(anon_sym_SLASH_POUND); - END_STATE(); - case 704: - ACCEPT_TOKEN(anon_sym_SLASH_POUND); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 705: - ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); - END_STATE(); - case 706: - ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 707: - ACCEPT_TOKEN(anon_sym_COMMA_COMMA); - END_STATE(); - case 708: - ACCEPT_TOKEN(anon_sym_CARET_CARET); - END_STATE(); - case 709: - ACCEPT_TOKEN(anon_sym_AT); - END_STATE(); - case 710: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 711: - ACCEPT_TOKEN(anon_sym_COMMA2); - if (lookahead == ',') ADVANCE(712); - END_STATE(); - case 712: - ACCEPT_TOKEN(anon_sym_COMMA_COMMA2); - END_STATE(); - case 713: - ACCEPT_TOKEN(anon_sym_CARET2); - if (lookahead == '^') ADVANCE(714); - END_STATE(); - case 714: - ACCEPT_TOKEN(anon_sym_CARET_CARET2); - END_STATE(); - case 715: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - END_STATE(); - case 716: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead == '(') ADVANCE(645); - END_STATE(); - case 717: - ACCEPT_TOKEN(anon_sym_BQUOTE); - END_STATE(); - case 718: - ACCEPT_TOKEN(anon_sym_BQUOTE); - if (lookahead == '`') ADVANCE(650); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(287); - END_STATE(); - case 719: - ACCEPT_TOKEN(anon_sym_DOLLAR_BQUOTE); - END_STATE(); - case 720: - ACCEPT_TOKEN(anon_sym_LT_LPAREN); - END_STATE(); - case 721: - ACCEPT_TOKEN(anon_sym_GT_LPAREN); - END_STATE(); - case 722: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(668); - if (lookahead == '\r') ADVANCE(661); - if (lookahead != 0) ADVANCE(661); - END_STATE(); - case 723: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(725); - if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) ADVANCE(724); - END_STATE(); - case 724: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(724); - END_STATE(); - case 725: - ACCEPT_TOKEN(sym__comment_word); - if (lookahead == '\\') ADVANCE(723); - if (!sym_word_character_set_1(lookahead)) ADVANCE(725); - END_STATE(); - case 726: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'a') ADVANCE(727); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 727: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'c') ADVANCE(544); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 728: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 's') ADVANCE(726); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 729: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(423); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(676); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 730: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(423); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(730); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 731: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'a') ADVANCE(732); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 732: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'c') ADVANCE(546); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 733: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == 's') ADVANCE(731); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 734: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 735: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 736: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'a') ADVANCE(737); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 737: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'c') ADVANCE(547); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 738: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'n') ADVANCE(445); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 739: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 's') ADVANCE(736); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 740: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(681); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 741: - ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 742: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(578); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(292); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - (lookahead < '[' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 743: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(579); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(311); - if (lookahead == '_') ADVANCE(790); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 744: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(583); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(294); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(733); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(139) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 745: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(586); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(329); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(144) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - (lookahead < '[' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 746: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(587); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(312); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(145) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 747: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(590); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(295); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(148) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 748: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(591); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(149) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 749: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(594); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(152) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 750: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(595); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(334); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(153) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 751: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(598); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(296); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 752: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(599); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(631); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(314); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(157) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 753: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(601); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(297); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == 'e') ADVANCE(733); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(159) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 754: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(602); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(317); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(160) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 755: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(604); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(298); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(162) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 756: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(605); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(322); - if (lookahead == '_') ADVANCE(790); - if (lookahead == 'i') ADVANCE(738); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(163) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 757: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(607); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(331); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(165) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 758: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(609); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(631); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(167) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 759: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(611); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(300); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(169) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 760: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(613); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(302); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(171) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 761: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(615); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(628); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ';') ADVANCE(450); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(315); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(173) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 762: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(617); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(319); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(175) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 763: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(561); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(517); - if (lookahead == '&') ADVANCE(630); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(532); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(293); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(632); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(550); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(192) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < ';' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 764: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '%') ADVANCE(519); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == ':') ADVANCE(640); - if (lookahead == ';') ADVANCE(448); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(457); - if (lookahead == '>') ADVANCE(535); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(309); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(200) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != '&' && - (lookahead < '[' || ']' < lookahead) && - lookahead != '{') ADVANCE(800); - END_STATE(); - case 765: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(285); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(310); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(201) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 766: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(794); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(301); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(202) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 767: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(303); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(203) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '[' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 768: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '>') ADVANCE(533); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(307); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(204) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 769: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(539); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(316); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(205) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '[' || ']' < lookahead) && - lookahead != '{' && - lookahead != '|') ADVANCE(800); - END_STATE(); - case 770: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(563); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(652); - if (lookahead == '\'') ADVANCE(266); - if (lookahead == '(') ADVANCE(269); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(507); - if (lookahead == '-') ADVANCE(501); - if (lookahead == '0') ADVANCE(786); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '>') ADVANCE(271); - if (lookahead == '?') ADVANCE(636); - if (lookahead == '@') ADVANCE(710); - if (lookahead == '\\') ADVANCE(320); - if (lookahead == '_') ADVANCE(789); - if (lookahead == '`') ADVANCE(717); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(206) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (lookahead != 0 && - lookahead != '&' && - lookahead != ';' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(800); - END_STATE(); - case 771: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(541); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(305); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(209) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 772: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(333); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(210) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 773: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == ')') ADVANCE(275); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(335); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(211) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 774: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == ':') ADVANCE(637); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(306); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(212) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 775: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(304); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(213) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 776: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(332); - if (lookahead == ']') ADVANCE(286); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(214) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 777: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(562); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(518); - if (lookahead == '&') ADVANCE(629); - if (lookahead == '*') ADVANCE(505); - if (lookahead == '+') ADVANCE(495); - if (lookahead == '-') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(531); - if (lookahead == '=') ADVANCE(456); - if (lookahead == '>') ADVANCE(537); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(308); - if (lookahead == '^') ADVANCE(633); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(552); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(215) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 778: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(318); - if (lookahead == ']') ADVANCE(566); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(226) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 779: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(264); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '>') ADVANCE(534); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(321); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(551); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(227) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 780: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == ')') ADVANCE(540); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(323); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '|') ADVANCE(548); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(228) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 781: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '/') ADVANCE(508); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(324); - if (lookahead == '_') ADVANCE(790); - if (lookahead == '}') ADVANCE(689); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(229) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 782: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '"') ADVANCE(659); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(326); - if (lookahead == '_') ADVANCE(790); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(231) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 783: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '#') ADVANCE(686); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(497); - if (lookahead == '0') ADVANCE(787); - if (lookahead == '?') ADVANCE(635); - if (lookahead == '@') ADVANCE(709); - if (lookahead == '\\') ADVANCE(328); - if (lookahead == '_') ADVANCE(790); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(234) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 784: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\\') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(784); - END_STATE(); - case 785: - ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '#') ADVANCE(684); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'x') ADVANCE(799); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (!sym_word_character_set_8(lookahead)) ADVANCE(800); - END_STATE(); - case 786: - ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '#') ADVANCE(684); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'x') ADVANCE(734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(677); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_9(lookahead)) ADVANCE(800); - END_STATE(); - case 787: - ACCEPT_TOKEN(anon_sym_0); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 788: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 789: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(735); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 790: - ACCEPT_TOKEN(anon_sym__); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - END_STATE(); - case 791: - ACCEPT_TOKEN(sym_word); - if (lookahead == '.') ADVANCE(648); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 792: - ACCEPT_TOKEN(sym_word); - if (lookahead == '0') ADVANCE(673); - if (lookahead == '\\') ADVANCE(423); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); - if (!sym_word_character_set_4(lookahead)) ADVANCE(800); - END_STATE(); - case 793: - ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(483); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); - END_STATE(); - case 794: - ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(481); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == '~') ADVANCE(570); - if (!sym_word_character_set_2(lookahead)) ADVANCE(800); - END_STATE(); - case 795: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'a') ADVANCE(796); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 796: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'c') ADVANCE(545); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 797: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 'n') ADVANCE(444); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 798: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == 's') ADVANCE(795); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 799: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(423); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 800: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(423); - if (!sym_word_character_set_1(lookahead)) ADVANCE(800); - END_STATE(); - case 801: - ACCEPT_TOKEN(sym_test_operator); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(801); - END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - switch (state) { - case 0: - if (lookahead == 'A') ADVANCE(1); - if (lookahead == 'E') ADVANCE(2); - if (lookahead == 'K') ADVANCE(3); - if (lookahead == 'L') ADVANCE(4); - if (lookahead == 'P') ADVANCE(5); - if (lookahead == 'Q') ADVANCE(6); - if (lookahead == 'U') ADVANCE(7); - if (lookahead == '\\') SKIP(8) - if (lookahead == 'a') ADVANCE(9); - if (lookahead == 'c') ADVANCE(10); - if (lookahead == 'd') ADVANCE(11); - if (lookahead == 'e') ADVANCE(12); - if (lookahead == 'f') ADVANCE(13); - if (lookahead == 'i') ADVANCE(14); - if (lookahead == 'k') ADVANCE(15); - if (lookahead == 'l') ADVANCE(16); - if (lookahead == 'r') ADVANCE(17); - if (lookahead == 's') ADVANCE(18); - if (lookahead == 't') ADVANCE(19); - if (lookahead == 'u') ADVANCE(20); - if (lookahead == 'w') ADVANCE(21); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(0) - END_STATE(); - case 1: - ACCEPT_TOKEN(anon_sym_A); - END_STATE(); - case 2: - ACCEPT_TOKEN(anon_sym_E); - END_STATE(); - case 3: - ACCEPT_TOKEN(anon_sym_K); - END_STATE(); - case 4: - ACCEPT_TOKEN(anon_sym_L); - END_STATE(); - case 5: - ACCEPT_TOKEN(anon_sym_P); - END_STATE(); - case 6: - ACCEPT_TOKEN(anon_sym_Q); - END_STATE(); - case 7: - ACCEPT_TOKEN(anon_sym_U); - END_STATE(); - case 8: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(0) - if (lookahead == '\r') SKIP(22) - END_STATE(); - case 9: - ACCEPT_TOKEN(anon_sym_a); - END_STATE(); - case 10: - if (lookahead == 'a') ADVANCE(23); - END_STATE(); - case 11: - if (lookahead == 'e') ADVANCE(24); - if (lookahead == 'o') ADVANCE(25); - END_STATE(); - case 12: - if (lookahead == 'l') ADVANCE(26); - if (lookahead == 'x') ADVANCE(27); - END_STATE(); - case 13: - if (lookahead == 'i') ADVANCE(28); - if (lookahead == 'o') ADVANCE(29); - if (lookahead == 'u') ADVANCE(30); - END_STATE(); - case 14: - if (lookahead == 'f') ADVANCE(31); - END_STATE(); - case 15: - ACCEPT_TOKEN(anon_sym_k); - END_STATE(); - case 16: - if (lookahead == 'o') ADVANCE(32); - END_STATE(); - case 17: - if (lookahead == 'e') ADVANCE(33); - END_STATE(); - case 18: - if (lookahead == 'e') ADVANCE(34); - END_STATE(); - case 19: - if (lookahead == 'h') ADVANCE(35); - if (lookahead == 'y') ADVANCE(36); - END_STATE(); - case 20: - ACCEPT_TOKEN(anon_sym_u); - if (lookahead == 'n') ADVANCE(37); - END_STATE(); - case 21: - if (lookahead == 'h') ADVANCE(38); - END_STATE(); - case 22: - if (lookahead == '\n') SKIP(0) - END_STATE(); - case 23: - if (lookahead == 's') ADVANCE(39); - END_STATE(); - case 24: - if (lookahead == 'c') ADVANCE(40); - END_STATE(); - case 25: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'n') ADVANCE(41); - END_STATE(); - case 26: - if (lookahead == 'i') ADVANCE(42); - if (lookahead == 's') ADVANCE(43); - END_STATE(); - case 27: - if (lookahead == 'p') ADVANCE(44); - END_STATE(); - case 28: - ACCEPT_TOKEN(anon_sym_fi); - END_STATE(); - case 29: - if (lookahead == 'r') ADVANCE(45); - END_STATE(); - case 30: - if (lookahead == 'n') ADVANCE(46); - END_STATE(); - case 31: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 32: - if (lookahead == 'c') ADVANCE(47); - END_STATE(); - case 33: - if (lookahead == 'a') ADVANCE(48); - END_STATE(); - case 34: - if (lookahead == 'l') ADVANCE(49); - END_STATE(); - case 35: - if (lookahead == 'e') ADVANCE(50); - END_STATE(); - case 36: - if (lookahead == 'p') ADVANCE(51); - END_STATE(); - case 37: - if (lookahead == 's') ADVANCE(52); - if (lookahead == 't') ADVANCE(53); - END_STATE(); - case 38: - if (lookahead == 'i') ADVANCE(54); - END_STATE(); - case 39: - if (lookahead == 'e') ADVANCE(55); - END_STATE(); - case 40: - if (lookahead == 'l') ADVANCE(56); - END_STATE(); - case 41: - if (lookahead == 'e') ADVANCE(57); - END_STATE(); - case 42: - if (lookahead == 'f') ADVANCE(58); - END_STATE(); - case 43: - if (lookahead == 'e') ADVANCE(59); - END_STATE(); - case 44: - if (lookahead == 'o') ADVANCE(60); - END_STATE(); - case 45: - ACCEPT_TOKEN(anon_sym_for); - END_STATE(); - case 46: - if (lookahead == 'c') ADVANCE(61); - END_STATE(); - case 47: - if (lookahead == 'a') ADVANCE(62); - END_STATE(); - case 48: - if (lookahead == 'd') ADVANCE(63); - END_STATE(); - case 49: - if (lookahead == 'e') ADVANCE(64); - END_STATE(); - case 50: - if (lookahead == 'n') ADVANCE(65); - END_STATE(); - case 51: - if (lookahead == 'e') ADVANCE(66); - END_STATE(); - case 52: - if (lookahead == 'e') ADVANCE(67); - END_STATE(); - case 53: - if (lookahead == 'i') ADVANCE(68); - END_STATE(); - case 54: - if (lookahead == 'l') ADVANCE(69); - END_STATE(); - case 55: - ACCEPT_TOKEN(anon_sym_case); - END_STATE(); - case 56: - if (lookahead == 'a') ADVANCE(70); - END_STATE(); - case 57: - ACCEPT_TOKEN(anon_sym_done); - END_STATE(); - case 58: - ACCEPT_TOKEN(anon_sym_elif); - END_STATE(); - case 59: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 60: - if (lookahead == 'r') ADVANCE(71); - END_STATE(); - case 61: - if (lookahead == 't') ADVANCE(72); - END_STATE(); - case 62: - if (lookahead == 'l') ADVANCE(73); - END_STATE(); - case 63: - if (lookahead == 'o') ADVANCE(74); - END_STATE(); - case 64: - if (lookahead == 'c') ADVANCE(75); - END_STATE(); - case 65: - ACCEPT_TOKEN(anon_sym_then); - END_STATE(); - case 66: - if (lookahead == 's') ADVANCE(76); - END_STATE(); - case 67: - if (lookahead == 't') ADVANCE(77); - END_STATE(); - case 68: - if (lookahead == 'l') ADVANCE(78); - END_STATE(); - case 69: - if (lookahead == 'e') ADVANCE(79); - END_STATE(); - case 70: - if (lookahead == 'r') ADVANCE(80); - END_STATE(); - case 71: - if (lookahead == 't') ADVANCE(81); - END_STATE(); - case 72: - if (lookahead == 'i') ADVANCE(82); - END_STATE(); - case 73: - ACCEPT_TOKEN(anon_sym_local); - END_STATE(); - case 74: - if (lookahead == 'n') ADVANCE(83); - END_STATE(); - case 75: - if (lookahead == 't') ADVANCE(84); - END_STATE(); - case 76: - if (lookahead == 'e') ADVANCE(85); - END_STATE(); - case 77: - ACCEPT_TOKEN(anon_sym_unset); - if (lookahead == 'e') ADVANCE(86); - END_STATE(); - case 78: - ACCEPT_TOKEN(anon_sym_until); - END_STATE(); - case 79: - ACCEPT_TOKEN(anon_sym_while); - END_STATE(); - case 80: - if (lookahead == 'e') ADVANCE(87); - END_STATE(); - case 81: - ACCEPT_TOKEN(anon_sym_export); - END_STATE(); - case 82: - if (lookahead == 'o') ADVANCE(88); - END_STATE(); - case 83: - if (lookahead == 'l') ADVANCE(89); - END_STATE(); - case 84: - ACCEPT_TOKEN(anon_sym_select); - END_STATE(); - case 85: - if (lookahead == 't') ADVANCE(90); - END_STATE(); - case 86: - if (lookahead == 'n') ADVANCE(91); - END_STATE(); - case 87: - ACCEPT_TOKEN(anon_sym_declare); - END_STATE(); - case 88: - if (lookahead == 'n') ADVANCE(92); - END_STATE(); - case 89: - if (lookahead == 'y') ADVANCE(93); - END_STATE(); - case 90: - ACCEPT_TOKEN(anon_sym_typeset); - END_STATE(); - case 91: - if (lookahead == 'v') ADVANCE(94); - END_STATE(); - case 92: - ACCEPT_TOKEN(anon_sym_function); - END_STATE(); - case 93: - ACCEPT_TOKEN(anon_sym_readonly); - END_STATE(); - case 94: - ACCEPT_TOKEN(anon_sym_unsetenv); - END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 439, .external_lex_state = 2}, - [2] = {.lex_state = 194, .external_lex_state = 2}, - [3] = {.lex_state = 194, .external_lex_state = 2}, - [4] = {.lex_state = 194, .external_lex_state = 2}, - [5] = {.lex_state = 194, .external_lex_state = 2}, - [6] = {.lex_state = 194, .external_lex_state = 2}, - [7] = {.lex_state = 194, .external_lex_state = 2}, - [8] = {.lex_state = 5, .external_lex_state = 3}, - [9] = {.lex_state = 194, .external_lex_state = 2}, - [10] = {.lex_state = 194, .external_lex_state = 2}, - [11] = {.lex_state = 5, .external_lex_state = 3}, - [12] = {.lex_state = 194, .external_lex_state = 2}, - [13] = {.lex_state = 143, .external_lex_state = 3}, - [14] = {.lex_state = 195, .external_lex_state = 4}, - [15] = {.lex_state = 195, .external_lex_state = 4}, - [16] = {.lex_state = 195, .external_lex_state = 4}, - [17] = {.lex_state = 439, .external_lex_state = 2}, - [18] = {.lex_state = 439, .external_lex_state = 2}, - [19] = {.lex_state = 439, .external_lex_state = 2}, - [20] = {.lex_state = 439, .external_lex_state = 2}, - [21] = {.lex_state = 439, .external_lex_state = 2}, - [22] = {.lex_state = 439, .external_lex_state = 2}, - [23] = {.lex_state = 197, .external_lex_state = 2}, - [24] = {.lex_state = 197, .external_lex_state = 2}, - [25] = {.lex_state = 197, .external_lex_state = 2}, - [26] = {.lex_state = 197, .external_lex_state = 2}, - [27] = {.lex_state = 197, .external_lex_state = 2}, - [28] = {.lex_state = 197, .external_lex_state = 2}, - [29] = {.lex_state = 197, .external_lex_state = 2}, - [30] = {.lex_state = 197, .external_lex_state = 2}, - [31] = {.lex_state = 197, .external_lex_state = 2}, - [32] = {.lex_state = 197, .external_lex_state = 2}, - [33] = {.lex_state = 197, .external_lex_state = 2}, - [34] = {.lex_state = 197, .external_lex_state = 2}, - [35] = {.lex_state = 439, .external_lex_state = 2}, - [36] = {.lex_state = 439, .external_lex_state = 2}, - [37] = {.lex_state = 439, .external_lex_state = 2}, - [38] = {.lex_state = 186, .external_lex_state = 5}, - [39] = {.lex_state = 439, .external_lex_state = 2}, - [40] = {.lex_state = 439, .external_lex_state = 2}, - [41] = {.lex_state = 439, .external_lex_state = 2}, - [42] = {.lex_state = 439, .external_lex_state = 2}, - [43] = {.lex_state = 439, .external_lex_state = 2}, - [44] = {.lex_state = 439, .external_lex_state = 2}, - [45] = {.lex_state = 439, .external_lex_state = 2}, - [46] = {.lex_state = 439, .external_lex_state = 2}, - [47] = {.lex_state = 439, .external_lex_state = 2}, - [48] = {.lex_state = 439, .external_lex_state = 2}, - [49] = {.lex_state = 439, .external_lex_state = 2}, - [50] = {.lex_state = 439, .external_lex_state = 2}, - [51] = {.lex_state = 439, .external_lex_state = 2}, - [52] = {.lex_state = 439, .external_lex_state = 2}, - [53] = {.lex_state = 439, .external_lex_state = 2}, - [54] = {.lex_state = 439, .external_lex_state = 2}, - [55] = {.lex_state = 439, .external_lex_state = 2}, - [56] = {.lex_state = 439, .external_lex_state = 2}, - [57] = {.lex_state = 439, .external_lex_state = 2}, - [58] = {.lex_state = 439, .external_lex_state = 2}, - [59] = {.lex_state = 439, .external_lex_state = 2}, - [60] = {.lex_state = 439, .external_lex_state = 2}, - [61] = {.lex_state = 439, .external_lex_state = 2}, - [62] = {.lex_state = 439, .external_lex_state = 2}, - [63] = {.lex_state = 439, .external_lex_state = 2}, - [64] = {.lex_state = 439, .external_lex_state = 2}, - [65] = {.lex_state = 439, .external_lex_state = 2}, - [66] = {.lex_state = 439, .external_lex_state = 2}, - [67] = {.lex_state = 439, .external_lex_state = 2}, - [68] = {.lex_state = 439, .external_lex_state = 2}, - [69] = {.lex_state = 439, .external_lex_state = 2}, - [70] = {.lex_state = 439, .external_lex_state = 2}, - [71] = {.lex_state = 439, .external_lex_state = 2}, - [72] = {.lex_state = 439, .external_lex_state = 2}, - [73] = {.lex_state = 439, .external_lex_state = 2}, - [74] = {.lex_state = 439, .external_lex_state = 2}, - [75] = {.lex_state = 439, .external_lex_state = 2}, - [76] = {.lex_state = 439, .external_lex_state = 2}, - [77] = {.lex_state = 439, .external_lex_state = 2}, - [78] = {.lex_state = 198, .external_lex_state = 2}, - [79] = {.lex_state = 439, .external_lex_state = 2}, - [80] = {.lex_state = 439, .external_lex_state = 2}, - [81] = {.lex_state = 439, .external_lex_state = 2}, - [82] = {.lex_state = 439, .external_lex_state = 2}, - [83] = {.lex_state = 439, .external_lex_state = 2}, - [84] = {.lex_state = 439, .external_lex_state = 2}, - [85] = {.lex_state = 439, .external_lex_state = 2}, - [86] = {.lex_state = 439, .external_lex_state = 2}, - [87] = {.lex_state = 439, .external_lex_state = 2}, - [88] = {.lex_state = 439, .external_lex_state = 2}, - [89] = {.lex_state = 439, .external_lex_state = 2}, - [90] = {.lex_state = 439, .external_lex_state = 2}, - [91] = {.lex_state = 439, .external_lex_state = 2}, - [92] = {.lex_state = 439, .external_lex_state = 2}, - [93] = {.lex_state = 439, .external_lex_state = 2}, - [94] = {.lex_state = 198, .external_lex_state = 2}, - [95] = {.lex_state = 439, .external_lex_state = 2}, - [96] = {.lex_state = 439, .external_lex_state = 2}, - [97] = {.lex_state = 439, .external_lex_state = 2}, - [98] = {.lex_state = 198, .external_lex_state = 2}, - [99] = {.lex_state = 439, .external_lex_state = 2}, - [100] = {.lex_state = 439, .external_lex_state = 2}, - [101] = {.lex_state = 439, .external_lex_state = 2}, - [102] = {.lex_state = 439, .external_lex_state = 2}, - [103] = {.lex_state = 439, .external_lex_state = 2}, - [104] = {.lex_state = 439, .external_lex_state = 2}, - [105] = {.lex_state = 439, .external_lex_state = 2}, - [106] = {.lex_state = 439, .external_lex_state = 2}, - [107] = {.lex_state = 439, .external_lex_state = 2}, - [108] = {.lex_state = 439, .external_lex_state = 2}, - [109] = {.lex_state = 439, .external_lex_state = 2}, - [110] = {.lex_state = 439, .external_lex_state = 2}, - [111] = {.lex_state = 439, .external_lex_state = 2}, - [112] = {.lex_state = 439, .external_lex_state = 2}, - [113] = {.lex_state = 439, .external_lex_state = 2}, - [114] = {.lex_state = 439, .external_lex_state = 2}, - [115] = {.lex_state = 439, .external_lex_state = 2}, - [116] = {.lex_state = 439, .external_lex_state = 2}, - [117] = {.lex_state = 439, .external_lex_state = 2}, - [118] = {.lex_state = 439, .external_lex_state = 2}, - [119] = {.lex_state = 439, .external_lex_state = 2}, - [120] = {.lex_state = 439, .external_lex_state = 2}, - [121] = {.lex_state = 439, .external_lex_state = 2}, - [122] = {.lex_state = 439, .external_lex_state = 2}, - [123] = {.lex_state = 439, .external_lex_state = 2}, - [124] = {.lex_state = 439, .external_lex_state = 2}, - [125] = {.lex_state = 439, .external_lex_state = 2}, - [126] = {.lex_state = 439, .external_lex_state = 2}, - [127] = {.lex_state = 439, .external_lex_state = 2}, - [128] = {.lex_state = 439, .external_lex_state = 2}, - [129] = {.lex_state = 439, .external_lex_state = 2}, - [130] = {.lex_state = 439, .external_lex_state = 2}, - [131] = {.lex_state = 439, .external_lex_state = 2}, - [132] = {.lex_state = 439, .external_lex_state = 2}, - [133] = {.lex_state = 439, .external_lex_state = 2}, - [134] = {.lex_state = 439, .external_lex_state = 2}, - [135] = {.lex_state = 439, .external_lex_state = 2}, - [136] = {.lex_state = 439, .external_lex_state = 2}, - [137] = {.lex_state = 439, .external_lex_state = 2}, - [138] = {.lex_state = 439, .external_lex_state = 2}, - [139] = {.lex_state = 439, .external_lex_state = 2}, - [140] = {.lex_state = 439, .external_lex_state = 2}, - [141] = {.lex_state = 439, .external_lex_state = 2}, - [142] = {.lex_state = 198, .external_lex_state = 2}, - [143] = {.lex_state = 198, .external_lex_state = 2}, - [144] = {.lex_state = 439, .external_lex_state = 2}, - [145] = {.lex_state = 439, .external_lex_state = 2}, - [146] = {.lex_state = 439, .external_lex_state = 2}, - [147] = {.lex_state = 439, .external_lex_state = 2}, - [148] = {.lex_state = 439, .external_lex_state = 2}, - [149] = {.lex_state = 439, .external_lex_state = 2}, - [150] = {.lex_state = 439, .external_lex_state = 2}, - [151] = {.lex_state = 439, .external_lex_state = 2}, - [152] = {.lex_state = 439, .external_lex_state = 2}, - [153] = {.lex_state = 439, .external_lex_state = 2}, - [154] = {.lex_state = 439, .external_lex_state = 2}, - [155] = {.lex_state = 439, .external_lex_state = 2}, - [156] = {.lex_state = 439, .external_lex_state = 2}, - [157] = {.lex_state = 439, .external_lex_state = 2}, - [158] = {.lex_state = 439, .external_lex_state = 2}, - [159] = {.lex_state = 439, .external_lex_state = 2}, - [160] = {.lex_state = 439, .external_lex_state = 2}, - [161] = {.lex_state = 439, .external_lex_state = 2}, - [162] = {.lex_state = 439, .external_lex_state = 2}, - [163] = {.lex_state = 439, .external_lex_state = 2}, - [164] = {.lex_state = 439, .external_lex_state = 2}, - [165] = {.lex_state = 439, .external_lex_state = 2}, - [166] = {.lex_state = 439, .external_lex_state = 2}, - [167] = {.lex_state = 439, .external_lex_state = 2}, - [168] = {.lex_state = 439, .external_lex_state = 2}, - [169] = {.lex_state = 439, .external_lex_state = 2}, - [170] = {.lex_state = 439, .external_lex_state = 2}, - [171] = {.lex_state = 439, .external_lex_state = 2}, - [172] = {.lex_state = 439, .external_lex_state = 2}, - [173] = {.lex_state = 439, .external_lex_state = 2}, - [174] = {.lex_state = 439, .external_lex_state = 2}, - [175] = {.lex_state = 439, .external_lex_state = 2}, - [176] = {.lex_state = 439, .external_lex_state = 2}, - [177] = {.lex_state = 439, .external_lex_state = 2}, - [178] = {.lex_state = 439, .external_lex_state = 2}, - [179] = {.lex_state = 439, .external_lex_state = 2}, - [180] = {.lex_state = 439, .external_lex_state = 2}, - [181] = {.lex_state = 439, .external_lex_state = 2}, - [182] = {.lex_state = 439, .external_lex_state = 2}, - [183] = {.lex_state = 439, .external_lex_state = 2}, - [184] = {.lex_state = 439, .external_lex_state = 2}, - [185] = {.lex_state = 439, .external_lex_state = 2}, - [186] = {.lex_state = 439, .external_lex_state = 2}, - [187] = {.lex_state = 439, .external_lex_state = 2}, - [188] = {.lex_state = 439, .external_lex_state = 2}, - [189] = {.lex_state = 439, .external_lex_state = 2}, - [190] = {.lex_state = 439, .external_lex_state = 2}, - [191] = {.lex_state = 439, .external_lex_state = 2}, - [192] = {.lex_state = 439, .external_lex_state = 2}, - [193] = {.lex_state = 439, .external_lex_state = 2}, - [194] = {.lex_state = 439, .external_lex_state = 2}, - [195] = {.lex_state = 439, .external_lex_state = 2}, - [196] = {.lex_state = 439, .external_lex_state = 2}, - [197] = {.lex_state = 439, .external_lex_state = 2}, - [198] = {.lex_state = 439, .external_lex_state = 2}, - [199] = {.lex_state = 439, .external_lex_state = 2}, - [200] = {.lex_state = 439, .external_lex_state = 2}, - [201] = {.lex_state = 198, .external_lex_state = 2}, - [202] = {.lex_state = 439, .external_lex_state = 2}, - [203] = {.lex_state = 439, .external_lex_state = 2}, - [204] = {.lex_state = 439, .external_lex_state = 2}, - [205] = {.lex_state = 439, .external_lex_state = 2}, - [206] = {.lex_state = 439, .external_lex_state = 2}, - [207] = {.lex_state = 439, .external_lex_state = 2}, - [208] = {.lex_state = 439, .external_lex_state = 2}, - [209] = {.lex_state = 439, .external_lex_state = 2}, - [210] = {.lex_state = 439, .external_lex_state = 2}, - [211] = {.lex_state = 439, .external_lex_state = 2}, - [212] = {.lex_state = 439, .external_lex_state = 2}, - [213] = {.lex_state = 439, .external_lex_state = 2}, - [214] = {.lex_state = 439, .external_lex_state = 2}, - [215] = {.lex_state = 439, .external_lex_state = 2}, - [216] = {.lex_state = 439, .external_lex_state = 2}, - [217] = {.lex_state = 439, .external_lex_state = 2}, - [218] = {.lex_state = 439, .external_lex_state = 2}, - [219] = {.lex_state = 439, .external_lex_state = 2}, - [220] = {.lex_state = 439, .external_lex_state = 2}, - [221] = {.lex_state = 439, .external_lex_state = 2}, - [222] = {.lex_state = 439, .external_lex_state = 2}, - [223] = {.lex_state = 439, .external_lex_state = 2}, - [224] = {.lex_state = 439, .external_lex_state = 2}, - [225] = {.lex_state = 439, .external_lex_state = 2}, - [226] = {.lex_state = 439, .external_lex_state = 2}, - [227] = {.lex_state = 439, .external_lex_state = 2}, - [228] = {.lex_state = 439, .external_lex_state = 2}, - [229] = {.lex_state = 439, .external_lex_state = 2}, - [230] = {.lex_state = 439, .external_lex_state = 2}, - [231] = {.lex_state = 198, .external_lex_state = 2}, - [232] = {.lex_state = 439, .external_lex_state = 2}, - [233] = {.lex_state = 439, .external_lex_state = 2}, - [234] = {.lex_state = 439, .external_lex_state = 2}, - [235] = {.lex_state = 439, .external_lex_state = 2}, - [236] = {.lex_state = 439, .external_lex_state = 2}, - [237] = {.lex_state = 439, .external_lex_state = 2}, - [238] = {.lex_state = 439, .external_lex_state = 2}, - [239] = {.lex_state = 439, .external_lex_state = 2}, - [240] = {.lex_state = 439, .external_lex_state = 2}, - [241] = {.lex_state = 439, .external_lex_state = 2}, - [242] = {.lex_state = 439, .external_lex_state = 2}, - [243] = {.lex_state = 439, .external_lex_state = 2}, - [244] = {.lex_state = 439, .external_lex_state = 2}, - [245] = {.lex_state = 439, .external_lex_state = 2}, - [246] = {.lex_state = 439, .external_lex_state = 2}, - [247] = {.lex_state = 439, .external_lex_state = 2}, - [248] = {.lex_state = 439, .external_lex_state = 2}, - [249] = {.lex_state = 439, .external_lex_state = 2}, - [250] = {.lex_state = 439, .external_lex_state = 2}, - [251] = {.lex_state = 439, .external_lex_state = 2}, - [252] = {.lex_state = 439, .external_lex_state = 2}, - [253] = {.lex_state = 439, .external_lex_state = 2}, - [254] = {.lex_state = 439, .external_lex_state = 2}, - [255] = {.lex_state = 439, .external_lex_state = 2}, - [256] = {.lex_state = 439, .external_lex_state = 2}, - [257] = {.lex_state = 439, .external_lex_state = 2}, - [258] = {.lex_state = 439, .external_lex_state = 2}, - [259] = {.lex_state = 439, .external_lex_state = 2}, - [260] = {.lex_state = 439, .external_lex_state = 2}, - [261] = {.lex_state = 439, .external_lex_state = 2}, - [262] = {.lex_state = 439, .external_lex_state = 2}, - [263] = {.lex_state = 439, .external_lex_state = 2}, - [264] = {.lex_state = 439, .external_lex_state = 2}, - [265] = {.lex_state = 439, .external_lex_state = 2}, - [266] = {.lex_state = 439, .external_lex_state = 2}, - [267] = {.lex_state = 439, .external_lex_state = 2}, - [268] = {.lex_state = 439, .external_lex_state = 2}, - [269] = {.lex_state = 439, .external_lex_state = 2}, - [270] = {.lex_state = 439, .external_lex_state = 2}, - [271] = {.lex_state = 439, .external_lex_state = 2}, - [272] = {.lex_state = 439, .external_lex_state = 2}, - [273] = {.lex_state = 439, .external_lex_state = 2}, - [274] = {.lex_state = 439, .external_lex_state = 2}, - [275] = {.lex_state = 439, .external_lex_state = 2}, - [276] = {.lex_state = 439, .external_lex_state = 2}, - [277] = {.lex_state = 439, .external_lex_state = 2}, - [278] = {.lex_state = 439, .external_lex_state = 2}, - [279] = {.lex_state = 439, .external_lex_state = 2}, - [280] = {.lex_state = 439, .external_lex_state = 2}, - [281] = {.lex_state = 439, .external_lex_state = 2}, - [282] = {.lex_state = 439, .external_lex_state = 2}, - [283] = {.lex_state = 439, .external_lex_state = 2}, - [284] = {.lex_state = 439, .external_lex_state = 2}, - [285] = {.lex_state = 439, .external_lex_state = 2}, - [286] = {.lex_state = 439, .external_lex_state = 2}, - [287] = {.lex_state = 439, .external_lex_state = 2}, - [288] = {.lex_state = 439, .external_lex_state = 2}, - [289] = {.lex_state = 439, .external_lex_state = 2}, - [290] = {.lex_state = 439, .external_lex_state = 2}, - [291] = {.lex_state = 439, .external_lex_state = 2}, - [292] = {.lex_state = 439, .external_lex_state = 2}, - [293] = {.lex_state = 439, .external_lex_state = 2}, - [294] = {.lex_state = 439, .external_lex_state = 2}, - [295] = {.lex_state = 439, .external_lex_state = 2}, - [296] = {.lex_state = 439, .external_lex_state = 2}, - [297] = {.lex_state = 439, .external_lex_state = 2}, - [298] = {.lex_state = 439, .external_lex_state = 2}, - [299] = {.lex_state = 439, .external_lex_state = 2}, - [300] = {.lex_state = 439, .external_lex_state = 2}, - [301] = {.lex_state = 439, .external_lex_state = 2}, - [302] = {.lex_state = 439, .external_lex_state = 2}, - [303] = {.lex_state = 439, .external_lex_state = 2}, - [304] = {.lex_state = 439, .external_lex_state = 2}, - [305] = {.lex_state = 439, .external_lex_state = 2}, - [306] = {.lex_state = 439, .external_lex_state = 2}, - [307] = {.lex_state = 439, .external_lex_state = 2}, - [308] = {.lex_state = 439, .external_lex_state = 2}, - [309] = {.lex_state = 439, .external_lex_state = 2}, - [310] = {.lex_state = 439, .external_lex_state = 2}, - [311] = {.lex_state = 439, .external_lex_state = 2}, - [312] = {.lex_state = 439, .external_lex_state = 2}, - [313] = {.lex_state = 439, .external_lex_state = 2}, - [314] = {.lex_state = 439, .external_lex_state = 2}, - [315] = {.lex_state = 439, .external_lex_state = 2}, - [316] = {.lex_state = 439, .external_lex_state = 2}, - [317] = {.lex_state = 439, .external_lex_state = 2}, - [318] = {.lex_state = 439, .external_lex_state = 2}, - [319] = {.lex_state = 439, .external_lex_state = 2}, - [320] = {.lex_state = 439, .external_lex_state = 2}, - [321] = {.lex_state = 439, .external_lex_state = 2}, - [322] = {.lex_state = 187, .external_lex_state = 6}, - [323] = {.lex_state = 190, .external_lex_state = 7}, - [324] = {.lex_state = 190, .external_lex_state = 7}, - [325] = {.lex_state = 190, .external_lex_state = 7}, - [326] = {.lex_state = 187, .external_lex_state = 6}, - [327] = {.lex_state = 189, .external_lex_state = 6}, - [328] = {.lex_state = 190, .external_lex_state = 7}, - [329] = {.lex_state = 190, .external_lex_state = 7}, - [330] = {.lex_state = 191, .external_lex_state = 6}, - [331] = {.lex_state = 190, .external_lex_state = 7}, - [332] = {.lex_state = 188, .external_lex_state = 6}, - [333] = {.lex_state = 187, .external_lex_state = 6}, - [334] = {.lex_state = 12, .external_lex_state = 8}, - [335] = {.lex_state = 12, .external_lex_state = 8}, - [336] = {.lex_state = 144, .external_lex_state = 8}, - [337] = {.lex_state = 144, .external_lex_state = 8}, - [338] = {.lex_state = 109, .external_lex_state = 3}, - [339] = {.lex_state = 192, .external_lex_state = 9}, - [340] = {.lex_state = 192, .external_lex_state = 9}, - [341] = {.lex_state = 109, .external_lex_state = 3}, - [342] = {.lex_state = 109, .external_lex_state = 3}, - [343] = {.lex_state = 109, .external_lex_state = 3}, - [344] = {.lex_state = 109, .external_lex_state = 3}, - [345] = {.lex_state = 109, .external_lex_state = 3}, - [346] = {.lex_state = 109, .external_lex_state = 3}, - [347] = {.lex_state = 109, .external_lex_state = 3}, - [348] = {.lex_state = 146, .external_lex_state = 3}, - [349] = {.lex_state = 109, .external_lex_state = 3}, - [350] = {.lex_state = 109, .external_lex_state = 3}, - [351] = {.lex_state = 109, .external_lex_state = 3}, - [352] = {.lex_state = 109, .external_lex_state = 3}, - [353] = {.lex_state = 109, .external_lex_state = 3}, - [354] = {.lex_state = 109, .external_lex_state = 3}, - [355] = {.lex_state = 146, .external_lex_state = 3}, - [356] = {.lex_state = 109, .external_lex_state = 3}, - [357] = {.lex_state = 109, .external_lex_state = 3}, - [358] = {.lex_state = 109, .external_lex_state = 3}, - [359] = {.lex_state = 146, .external_lex_state = 3}, - [360] = {.lex_state = 146, .external_lex_state = 3}, - [361] = {.lex_state = 109, .external_lex_state = 3}, - [362] = {.lex_state = 146, .external_lex_state = 3}, - [363] = {.lex_state = 146, .external_lex_state = 3}, - [364] = {.lex_state = 109, .external_lex_state = 3}, - [365] = {.lex_state = 109, .external_lex_state = 3}, - [366] = {.lex_state = 109, .external_lex_state = 3}, - [367] = {.lex_state = 109, .external_lex_state = 3}, - [368] = {.lex_state = 109, .external_lex_state = 3}, - [369] = {.lex_state = 109, .external_lex_state = 3}, - [370] = {.lex_state = 109, .external_lex_state = 3}, - [371] = {.lex_state = 109, .external_lex_state = 3}, - [372] = {.lex_state = 109, .external_lex_state = 3}, - [373] = {.lex_state = 109, .external_lex_state = 3}, - [374] = {.lex_state = 146, .external_lex_state = 3}, - [375] = {.lex_state = 146, .external_lex_state = 3}, - [376] = {.lex_state = 146, .external_lex_state = 3}, - [377] = {.lex_state = 150, .external_lex_state = 8}, - [378] = {.lex_state = 146, .external_lex_state = 3}, - [379] = {.lex_state = 150, .external_lex_state = 8}, - [380] = {.lex_state = 146, .external_lex_state = 3}, - [381] = {.lex_state = 146, .external_lex_state = 3}, - [382] = {.lex_state = 146, .external_lex_state = 3}, - [383] = {.lex_state = 146, .external_lex_state = 3}, - [384] = {.lex_state = 146, .external_lex_state = 3}, - [385] = {.lex_state = 146, .external_lex_state = 3}, - [386] = {.lex_state = 146, .external_lex_state = 3}, - [387] = {.lex_state = 146, .external_lex_state = 3}, - [388] = {.lex_state = 146, .external_lex_state = 3}, - [389] = {.lex_state = 146, .external_lex_state = 3}, - [390] = {.lex_state = 146, .external_lex_state = 3}, - [391] = {.lex_state = 146, .external_lex_state = 3}, - [392] = {.lex_state = 146, .external_lex_state = 3}, - [393] = {.lex_state = 146, .external_lex_state = 3}, - [394] = {.lex_state = 146, .external_lex_state = 3}, - [395] = {.lex_state = 150, .external_lex_state = 8}, - [396] = {.lex_state = 146, .external_lex_state = 3}, - [397] = {.lex_state = 150, .external_lex_state = 8}, - [398] = {.lex_state = 154, .external_lex_state = 8}, - [399] = {.lex_state = 154, .external_lex_state = 8}, - [400] = {.lex_state = 150, .external_lex_state = 8}, - [401] = {.lex_state = 207, .external_lex_state = 5}, - [402] = {.lex_state = 150, .external_lex_state = 8}, - [403] = {.lex_state = 207, .external_lex_state = 5}, - [404] = {.lex_state = 207, .external_lex_state = 5}, - [405] = {.lex_state = 154, .external_lex_state = 8}, - [406] = {.lex_state = 207, .external_lex_state = 5}, - [407] = {.lex_state = 207, .external_lex_state = 5}, - [408] = {.lex_state = 207, .external_lex_state = 5}, - [409] = {.lex_state = 154, .external_lex_state = 8}, - [410] = {.lex_state = 207, .external_lex_state = 5}, - [411] = {.lex_state = 207, .external_lex_state = 5}, - [412] = {.lex_state = 207, .external_lex_state = 5}, - [413] = {.lex_state = 207, .external_lex_state = 5}, - [414] = {.lex_state = 207, .external_lex_state = 5}, - [415] = {.lex_state = 207, .external_lex_state = 5}, - [416] = {.lex_state = 207, .external_lex_state = 5}, - [417] = {.lex_state = 207, .external_lex_state = 5}, - [418] = {.lex_state = 207, .external_lex_state = 5}, - [419] = {.lex_state = 207, .external_lex_state = 5}, - [420] = {.lex_state = 207, .external_lex_state = 5}, - [421] = {.lex_state = 207, .external_lex_state = 5}, - [422] = {.lex_state = 207, .external_lex_state = 5}, - [423] = {.lex_state = 207, .external_lex_state = 5}, - [424] = {.lex_state = 207, .external_lex_state = 5}, - [425] = {.lex_state = 207, .external_lex_state = 5}, - [426] = {.lex_state = 207, .external_lex_state = 5}, - [427] = {.lex_state = 207, .external_lex_state = 5}, - [428] = {.lex_state = 207, .external_lex_state = 5}, - [429] = {.lex_state = 207, .external_lex_state = 5}, - [430] = {.lex_state = 236, .external_lex_state = 10}, - [431] = {.lex_state = 208, .external_lex_state = 9}, - [432] = {.lex_state = 208, .external_lex_state = 9}, - [433] = {.lex_state = 208, .external_lex_state = 9}, - [434] = {.lex_state = 208, .external_lex_state = 9}, - [435] = {.lex_state = 196, .external_lex_state = 2}, - [436] = {.lex_state = 196, .external_lex_state = 2}, - [437] = {.lex_state = 196, .external_lex_state = 2}, - [438] = {.lex_state = 196, .external_lex_state = 2}, - [439] = {.lex_state = 135, .external_lex_state = 11}, - [440] = {.lex_state = 135, .external_lex_state = 11}, - [441] = {.lex_state = 135, .external_lex_state = 11}, - [442] = {.lex_state = 147, .external_lex_state = 11}, - [443] = {.lex_state = 151, .external_lex_state = 8}, - [444] = {.lex_state = 147, .external_lex_state = 11}, - [445] = {.lex_state = 147, .external_lex_state = 11}, - [446] = {.lex_state = 151, .external_lex_state = 8}, - [447] = {.lex_state = 151, .external_lex_state = 8}, - [448] = {.lex_state = 151, .external_lex_state = 8}, - [449] = {.lex_state = 151, .external_lex_state = 8}, - [450] = {.lex_state = 155, .external_lex_state = 8}, - [451] = {.lex_state = 155, .external_lex_state = 8}, - [452] = {.lex_state = 155, .external_lex_state = 8}, - [453] = {.lex_state = 155, .external_lex_state = 8}, - [454] = {.lex_state = 431, .external_lex_state = 11}, - [455] = {.lex_state = 155, .external_lex_state = 8}, - [456] = {.lex_state = 431, .external_lex_state = 11}, - [457] = {.lex_state = 431, .external_lex_state = 11}, - [458] = {.lex_state = 431, .external_lex_state = 11}, - [459] = {.lex_state = 431, .external_lex_state = 11}, - [460] = {.lex_state = 431, .external_lex_state = 11}, - [461] = {.lex_state = 139, .external_lex_state = 8}, - [462] = {.lex_state = 139, .external_lex_state = 8}, - [463] = {.lex_state = 148, .external_lex_state = 8}, - [464] = {.lex_state = 432, .external_lex_state = 8}, - [465] = {.lex_state = 135, .external_lex_state = 12}, - [466] = {.lex_state = 135, .external_lex_state = 12}, - [467] = {.lex_state = 432, .external_lex_state = 8}, - [468] = {.lex_state = 164, .external_lex_state = 11}, - [469] = {.lex_state = 164, .external_lex_state = 11}, - [470] = {.lex_state = 432, .external_lex_state = 8}, - [471] = {.lex_state = 164, .external_lex_state = 11}, - [472] = {.lex_state = 432, .external_lex_state = 8}, - [473] = {.lex_state = 432, .external_lex_state = 8}, - [474] = {.lex_state = 432, .external_lex_state = 8}, - [475] = {.lex_state = 432, .external_lex_state = 8}, - [476] = {.lex_state = 432, .external_lex_state = 8}, - [477] = {.lex_state = 431, .external_lex_state = 11}, - [478] = {.lex_state = 148, .external_lex_state = 8}, - [479] = {.lex_state = 431, .external_lex_state = 11}, - [480] = {.lex_state = 431, .external_lex_state = 11}, - [481] = {.lex_state = 432, .external_lex_state = 8}, - [482] = {.lex_state = 431, .external_lex_state = 11}, - [483] = {.lex_state = 431, .external_lex_state = 11}, - [484] = {.lex_state = 432, .external_lex_state = 8}, - [485] = {.lex_state = 135, .external_lex_state = 12}, - [486] = {.lex_state = 164, .external_lex_state = 12}, - [487] = {.lex_state = 429, .external_lex_state = 8}, - [488] = {.lex_state = 432, .external_lex_state = 8}, - [489] = {.lex_state = 166, .external_lex_state = 11}, - [490] = {.lex_state = 156, .external_lex_state = 8}, - [491] = {.lex_state = 432, .external_lex_state = 8}, - [492] = {.lex_state = 432, .external_lex_state = 8}, - [493] = {.lex_state = 159, .external_lex_state = 11}, - [494] = {.lex_state = 432, .external_lex_state = 8}, - [495] = {.lex_state = 432, .external_lex_state = 8}, - [496] = {.lex_state = 147, .external_lex_state = 12}, - [497] = {.lex_state = 166, .external_lex_state = 11}, - [498] = {.lex_state = 159, .external_lex_state = 11}, - [499] = {.lex_state = 156, .external_lex_state = 8}, - [500] = {.lex_state = 166, .external_lex_state = 11}, - [501] = {.lex_state = 159, .external_lex_state = 11}, - [502] = {.lex_state = 147, .external_lex_state = 12}, - [503] = {.lex_state = 432, .external_lex_state = 8}, - [504] = {.lex_state = 147, .external_lex_state = 12}, - [505] = {.lex_state = 432, .external_lex_state = 8}, - [506] = {.lex_state = 432, .external_lex_state = 8}, - [507] = {.lex_state = 164, .external_lex_state = 12}, - [508] = {.lex_state = 159, .external_lex_state = 11}, - [509] = {.lex_state = 432, .external_lex_state = 8}, - [510] = {.lex_state = 164, .external_lex_state = 12}, - [511] = {.lex_state = 429, .external_lex_state = 8}, - [512] = {.lex_state = 431, .external_lex_state = 12}, - [513] = {.lex_state = 431, .external_lex_state = 12}, - [514] = {.lex_state = 431, .external_lex_state = 12}, - [515] = {.lex_state = 162, .external_lex_state = 11}, - [516] = {.lex_state = 162, .external_lex_state = 11}, - [517] = {.lex_state = 434, .external_lex_state = 11}, - [518] = {.lex_state = 434, .external_lex_state = 11}, - [519] = {.lex_state = 434, .external_lex_state = 11}, - [520] = {.lex_state = 434, .external_lex_state = 11}, - [521] = {.lex_state = 166, .external_lex_state = 12}, - [522] = {.lex_state = 166, .external_lex_state = 12}, - [523] = {.lex_state = 434, .external_lex_state = 11}, - [524] = {.lex_state = 159, .external_lex_state = 12}, - [525] = {.lex_state = 159, .external_lex_state = 12}, - [526] = {.lex_state = 166, .external_lex_state = 12}, - [527] = {.lex_state = 431, .external_lex_state = 12}, - [528] = {.lex_state = 162, .external_lex_state = 11}, - [529] = {.lex_state = 429, .external_lex_state = 8}, - [530] = {.lex_state = 434, .external_lex_state = 11}, - [531] = {.lex_state = 159, .external_lex_state = 12}, - [532] = {.lex_state = 431, .external_lex_state = 12}, - [533] = {.lex_state = 429, .external_lex_state = 8}, - [534] = {.lex_state = 159, .external_lex_state = 12}, - [535] = {.lex_state = 162, .external_lex_state = 11}, - [536] = {.lex_state = 431, .external_lex_state = 12}, - [537] = {.lex_state = 162, .external_lex_state = 12}, - [538] = {.lex_state = 147, .external_lex_state = 11}, - [539] = {.lex_state = 431, .external_lex_state = 12}, - [540] = {.lex_state = 439, .external_lex_state = 2}, - [541] = {.lex_state = 434, .external_lex_state = 12}, - [542] = {.lex_state = 434, .external_lex_state = 11}, - [543] = {.lex_state = 431, .external_lex_state = 12}, - [544] = {.lex_state = 433, .external_lex_state = 11}, - [545] = {.lex_state = 434, .external_lex_state = 12}, - [546] = {.lex_state = 433, .external_lex_state = 11}, - [547] = {.lex_state = 431, .external_lex_state = 12}, - [548] = {.lex_state = 439, .external_lex_state = 2}, - [549] = {.lex_state = 431, .external_lex_state = 12}, - [550] = {.lex_state = 434, .external_lex_state = 11}, - [551] = {.lex_state = 197, .external_lex_state = 2}, - [552] = {.lex_state = 162, .external_lex_state = 12}, - [553] = {.lex_state = 434, .external_lex_state = 11}, - [554] = {.lex_state = 433, .external_lex_state = 11}, - [555] = {.lex_state = 434, .external_lex_state = 12}, - [556] = {.lex_state = 433, .external_lex_state = 11}, - [557] = {.lex_state = 147, .external_lex_state = 11}, - [558] = {.lex_state = 434, .external_lex_state = 12}, - [559] = {.lex_state = 431, .external_lex_state = 12}, - [560] = {.lex_state = 197, .external_lex_state = 2}, - [561] = {.lex_state = 147, .external_lex_state = 11}, - [562] = {.lex_state = 162, .external_lex_state = 12}, - [563] = {.lex_state = 167, .external_lex_state = 11}, - [564] = {.lex_state = 162, .external_lex_state = 12}, - [565] = {.lex_state = 167, .external_lex_state = 11}, - [566] = {.lex_state = 439, .external_lex_state = 2}, - [567] = {.lex_state = 434, .external_lex_state = 12}, - [568] = {.lex_state = 434, .external_lex_state = 12}, - [569] = {.lex_state = 167, .external_lex_state = 11}, - [570] = {.lex_state = 167, .external_lex_state = 11}, - [571] = {.lex_state = 167, .external_lex_state = 12}, - [572] = {.lex_state = 433, .external_lex_state = 11}, - [573] = {.lex_state = 434, .external_lex_state = 12}, - [574] = {.lex_state = 433, .external_lex_state = 12}, - [575] = {.lex_state = 433, .external_lex_state = 12}, - [576] = {.lex_state = 237, .external_lex_state = 2}, - [577] = {.lex_state = 237, .external_lex_state = 2}, - [578] = {.lex_state = 237, .external_lex_state = 2}, - [579] = {.lex_state = 237, .external_lex_state = 2}, - [580] = {.lex_state = 237, .external_lex_state = 2}, - [581] = {.lex_state = 246, .external_lex_state = 13}, - [582] = {.lex_state = 237, .external_lex_state = 2}, - [583] = {.lex_state = 246, .external_lex_state = 13}, - [584] = {.lex_state = 167, .external_lex_state = 12}, - [585] = {.lex_state = 167, .external_lex_state = 12}, - [586] = {.lex_state = 433, .external_lex_state = 12}, - [587] = {.lex_state = 237, .external_lex_state = 2}, - [588] = {.lex_state = 155, .external_lex_state = 8}, - [589] = {.lex_state = 433, .external_lex_state = 12}, - [590] = {.lex_state = 155, .external_lex_state = 8}, - [591] = {.lex_state = 167, .external_lex_state = 12}, - [592] = {.lex_state = 433, .external_lex_state = 11}, - [593] = {.lex_state = 433, .external_lex_state = 11}, - [594] = {.lex_state = 434, .external_lex_state = 12}, - [595] = {.lex_state = 433, .external_lex_state = 11}, - [596] = {.lex_state = 155, .external_lex_state = 8}, - [597] = {.lex_state = 155, .external_lex_state = 8}, - [598] = {.lex_state = 434, .external_lex_state = 12}, - [599] = {.lex_state = 237, .external_lex_state = 2}, - [600] = {.lex_state = 434, .external_lex_state = 12}, - [601] = {.lex_state = 434, .external_lex_state = 12}, - [602] = {.lex_state = 155, .external_lex_state = 8}, - [603] = {.lex_state = 246, .external_lex_state = 13}, - [604] = {.lex_state = 243, .external_lex_state = 14}, - [605] = {.lex_state = 252, .external_lex_state = 10}, - [606] = {.lex_state = 433, .external_lex_state = 12}, - [607] = {.lex_state = 433, .external_lex_state = 12}, - [608] = {.lex_state = 164, .external_lex_state = 11}, - [609] = {.lex_state = 243, .external_lex_state = 14}, - [610] = {.lex_state = 164, .external_lex_state = 11}, - [611] = {.lex_state = 243, .external_lex_state = 14}, - [612] = {.lex_state = 243, .external_lex_state = 14}, - [613] = {.lex_state = 164, .external_lex_state = 11}, - [614] = {.lex_state = 433, .external_lex_state = 12}, - [615] = {.lex_state = 243, .external_lex_state = 14}, - [616] = {.lex_state = 164, .external_lex_state = 11}, - [617] = {.lex_state = 169, .external_lex_state = 8}, - [618] = {.lex_state = 169, .external_lex_state = 8}, - [619] = {.lex_state = 433, .external_lex_state = 12}, - [620] = {.lex_state = 244, .external_lex_state = 15}, - [621] = {.lex_state = 198, .external_lex_state = 2}, - [622] = {.lex_state = 166, .external_lex_state = 11}, - [623] = {.lex_state = 439, .external_lex_state = 2}, - [624] = {.lex_state = 166, .external_lex_state = 11}, - [625] = {.lex_state = 166, .external_lex_state = 11}, - [626] = {.lex_state = 166, .external_lex_state = 11}, - [627] = {.lex_state = 244, .external_lex_state = 15}, - [628] = {.lex_state = 198, .external_lex_state = 2}, - [629] = {.lex_state = 147, .external_lex_state = 12}, - [630] = {.lex_state = 198, .external_lex_state = 2}, - [631] = {.lex_state = 166, .external_lex_state = 11}, - [632] = {.lex_state = 166, .external_lex_state = 11}, - [633] = {.lex_state = 198, .external_lex_state = 2}, - [634] = {.lex_state = 147, .external_lex_state = 12}, - [635] = {.lex_state = 439, .external_lex_state = 2}, - [636] = {.lex_state = 147, .external_lex_state = 12}, - [637] = {.lex_state = 439, .external_lex_state = 2}, - [638] = {.lex_state = 170, .external_lex_state = 3}, - [639] = {.lex_state = 166, .external_lex_state = 11}, - [640] = {.lex_state = 202, .external_lex_state = 14}, - [641] = {.lex_state = 202, .external_lex_state = 14}, - [642] = {.lex_state = 244, .external_lex_state = 15}, - [643] = {.lex_state = 171, .external_lex_state = 11}, - [644] = {.lex_state = 434, .external_lex_state = 11}, - [645] = {.lex_state = 246, .external_lex_state = 16}, - [646] = {.lex_state = 439, .external_lex_state = 2}, - [647] = {.lex_state = 166, .external_lex_state = 12}, - [648] = {.lex_state = 434, .external_lex_state = 11}, - [649] = {.lex_state = 166, .external_lex_state = 12}, - [650] = {.lex_state = 246, .external_lex_state = 16}, - [651] = {.lex_state = 203, .external_lex_state = 15}, - [652] = {.lex_state = 439, .external_lex_state = 2}, - [653] = {.lex_state = 434, .external_lex_state = 11}, - [654] = {.lex_state = 171, .external_lex_state = 11}, - [655] = {.lex_state = 203, .external_lex_state = 15}, - [656] = {.lex_state = 434, .external_lex_state = 11}, - [657] = {.lex_state = 172, .external_lex_state = 3}, - [658] = {.lex_state = 171, .external_lex_state = 11}, - [659] = {.lex_state = 246, .external_lex_state = 16}, - [660] = {.lex_state = 439, .external_lex_state = 2}, - [661] = {.lex_state = 171, .external_lex_state = 11}, - [662] = {.lex_state = 434, .external_lex_state = 11}, - [663] = {.lex_state = 434, .external_lex_state = 11}, - [664] = {.lex_state = 240, .external_lex_state = 13}, - [665] = {.lex_state = 170, .external_lex_state = 3}, - [666] = {.lex_state = 170, .external_lex_state = 3}, - [667] = {.lex_state = 213, .external_lex_state = 17}, - [668] = {.lex_state = 213, .external_lex_state = 17}, - [669] = {.lex_state = 244, .external_lex_state = 18}, - [670] = {.lex_state = 240, .external_lex_state = 13}, - [671] = {.lex_state = 240, .external_lex_state = 13}, - [672] = {.lex_state = 166, .external_lex_state = 12}, - [673] = {.lex_state = 170, .external_lex_state = 3}, - [674] = {.lex_state = 434, .external_lex_state = 11}, - [675] = {.lex_state = 170, .external_lex_state = 3}, - [676] = {.lex_state = 434, .external_lex_state = 11}, - [677] = {.lex_state = 209, .external_lex_state = 19}, - [678] = {.lex_state = 170, .external_lex_state = 3}, - [679] = {.lex_state = 170, .external_lex_state = 3}, - [680] = {.lex_state = 170, .external_lex_state = 3}, - [681] = {.lex_state = 170, .external_lex_state = 3}, - [682] = {.lex_state = 244, .external_lex_state = 18}, - [683] = {.lex_state = 209, .external_lex_state = 19}, - [684] = {.lex_state = 170, .external_lex_state = 3}, - [685] = {.lex_state = 244, .external_lex_state = 18}, - [686] = {.lex_state = 170, .external_lex_state = 3}, - [687] = {.lex_state = 210, .external_lex_state = 19}, - [688] = {.lex_state = 172, .external_lex_state = 3}, - [689] = {.lex_state = 203, .external_lex_state = 18}, - [690] = {.lex_state = 214, .external_lex_state = 19}, - [691] = {.lex_state = 170, .external_lex_state = 3}, - [692] = {.lex_state = 435, .external_lex_state = 3}, - [693] = {.lex_state = 170, .external_lex_state = 3}, - [694] = {.lex_state = 170, .external_lex_state = 3}, - [695] = {.lex_state = 170, .external_lex_state = 3}, - [696] = {.lex_state = 212, .external_lex_state = 19}, - [697] = {.lex_state = 212, .external_lex_state = 19}, - [698] = {.lex_state = 170, .external_lex_state = 3}, - [699] = {.lex_state = 170, .external_lex_state = 3}, - [700] = {.lex_state = 170, .external_lex_state = 3}, - [701] = {.lex_state = 434, .external_lex_state = 11}, - [702] = {.lex_state = 170, .external_lex_state = 3}, - [703] = {.lex_state = 434, .external_lex_state = 11}, - [704] = {.lex_state = 170, .external_lex_state = 3}, - [705] = {.lex_state = 170, .external_lex_state = 3}, - [706] = {.lex_state = 253, .external_lex_state = 20}, - [707] = {.lex_state = 176, .external_lex_state = 21}, - [708] = {.lex_state = 176, .external_lex_state = 21}, - [709] = {.lex_state = 434, .external_lex_state = 11}, - [710] = {.lex_state = 176, .external_lex_state = 21}, - [711] = {.lex_state = 170, .external_lex_state = 3}, - [712] = {.lex_state = 170, .external_lex_state = 3}, - [713] = {.lex_state = 170, .external_lex_state = 3}, - [714] = {.lex_state = 170, .external_lex_state = 3}, - [715] = {.lex_state = 214, .external_lex_state = 19}, - [716] = {.lex_state = 170, .external_lex_state = 3}, - [717] = {.lex_state = 170, .external_lex_state = 3}, - [718] = {.lex_state = 170, .external_lex_state = 3}, - [719] = {.lex_state = 211, .external_lex_state = 19}, - [720] = {.lex_state = 170, .external_lex_state = 3}, - [721] = {.lex_state = 170, .external_lex_state = 3}, - [722] = {.lex_state = 211, .external_lex_state = 19}, - [723] = {.lex_state = 170, .external_lex_state = 3}, - [724] = {.lex_state = 176, .external_lex_state = 21}, - [725] = {.lex_state = 172, .external_lex_state = 3}, - [726] = {.lex_state = 203, .external_lex_state = 18}, - [727] = {.lex_state = 176, .external_lex_state = 21}, - [728] = {.lex_state = 172, .external_lex_state = 3}, - [729] = {.lex_state = 172, .external_lex_state = 3}, - [730] = {.lex_state = 176, .external_lex_state = 21}, - [731] = {.lex_state = 172, .external_lex_state = 3}, - [732] = {.lex_state = 434, .external_lex_state = 11}, - [733] = {.lex_state = 172, .external_lex_state = 3}, - [734] = {.lex_state = 172, .external_lex_state = 3}, - [735] = {.lex_state = 210, .external_lex_state = 19}, - [736] = {.lex_state = 213, .external_lex_state = 22}, - [737] = {.lex_state = 213, .external_lex_state = 22}, - [738] = {.lex_state = 204, .external_lex_state = 13}, - [739] = {.lex_state = 172, .external_lex_state = 3}, - [740] = {.lex_state = 240, .external_lex_state = 16}, - [741] = {.lex_state = 204, .external_lex_state = 13}, - [742] = {.lex_state = 434, .external_lex_state = 11}, - [743] = {.lex_state = 434, .external_lex_state = 11}, - [744] = {.lex_state = 171, .external_lex_state = 12}, - [745] = {.lex_state = 171, .external_lex_state = 12}, - [746] = {.lex_state = 240, .external_lex_state = 16}, - [747] = {.lex_state = 176, .external_lex_state = 21}, - [748] = {.lex_state = 176, .external_lex_state = 21}, - [749] = {.lex_state = 171, .external_lex_state = 12}, - [750] = {.lex_state = 171, .external_lex_state = 12}, - [751] = {.lex_state = 435, .external_lex_state = 3}, - [752] = {.lex_state = 240, .external_lex_state = 16}, - [753] = {.lex_state = 434, .external_lex_state = 11}, - [754] = {.lex_state = 434, .external_lex_state = 11}, - [755] = {.lex_state = 434, .external_lex_state = 11}, - [756] = {.lex_state = 434, .external_lex_state = 11}, - [757] = {.lex_state = 172, .external_lex_state = 3}, - [758] = {.lex_state = 172, .external_lex_state = 3}, - [759] = {.lex_state = 434, .external_lex_state = 11}, - [760] = {.lex_state = 204, .external_lex_state = 13}, - [761] = {.lex_state = 204, .external_lex_state = 13}, - [762] = {.lex_state = 253, .external_lex_state = 20}, - [763] = {.lex_state = 434, .external_lex_state = 11}, - [764] = {.lex_state = 434, .external_lex_state = 11}, - [765] = {.lex_state = 434, .external_lex_state = 11}, - [766] = {.lex_state = 176, .external_lex_state = 21}, - [767] = {.lex_state = 177, .external_lex_state = 21}, - [768] = {.lex_state = 435, .external_lex_state = 3}, - [769] = {.lex_state = 435, .external_lex_state = 3}, - [770] = {.lex_state = 177, .external_lex_state = 21}, - [771] = {.lex_state = 177, .external_lex_state = 21}, - [772] = {.lex_state = 177, .external_lex_state = 21}, - [773] = {.lex_state = 435, .external_lex_state = 3}, - [774] = {.lex_state = 435, .external_lex_state = 3}, - [775] = {.lex_state = 176, .external_lex_state = 21}, - [776] = {.lex_state = 435, .external_lex_state = 3}, - [777] = {.lex_state = 435, .external_lex_state = 3}, - [778] = {.lex_state = 435, .external_lex_state = 3}, - [779] = {.lex_state = 178, .external_lex_state = 21}, - [780] = {.lex_state = 178, .external_lex_state = 21}, - [781] = {.lex_state = 435, .external_lex_state = 3}, - [782] = {.lex_state = 253, .external_lex_state = 10}, - [783] = {.lex_state = 253, .external_lex_state = 10}, - [784] = {.lex_state = 178, .external_lex_state = 21}, - [785] = {.lex_state = 178, .external_lex_state = 21}, - [786] = {.lex_state = 177, .external_lex_state = 21}, - [787] = {.lex_state = 177, .external_lex_state = 21}, - [788] = {.lex_state = 435, .external_lex_state = 3}, - [789] = {.lex_state = 176, .external_lex_state = 21}, - [790] = {.lex_state = 435, .external_lex_state = 3}, - [791] = {.lex_state = 204, .external_lex_state = 16}, - [792] = {.lex_state = 151, .external_lex_state = 8}, - [793] = {.lex_state = 204, .external_lex_state = 16}, - [794] = {.lex_state = 435, .external_lex_state = 3}, - [795] = {.lex_state = 435, .external_lex_state = 3}, - [796] = {.lex_state = 151, .external_lex_state = 8}, - [797] = {.lex_state = 178, .external_lex_state = 21}, - [798] = {.lex_state = 178, .external_lex_state = 21}, - [799] = {.lex_state = 178, .external_lex_state = 21}, - [800] = {.lex_state = 435, .external_lex_state = 3}, - [801] = {.lex_state = 435, .external_lex_state = 3}, - [802] = {.lex_state = 176, .external_lex_state = 21}, - [803] = {.lex_state = 176, .external_lex_state = 21}, - [804] = {.lex_state = 176, .external_lex_state = 21}, - [805] = {.lex_state = 176, .external_lex_state = 21}, - [806] = {.lex_state = 176, .external_lex_state = 21}, - [807] = {.lex_state = 176, .external_lex_state = 23}, - [808] = {.lex_state = 176, .external_lex_state = 23}, - [809] = {.lex_state = 151, .external_lex_state = 8}, - [810] = {.lex_state = 176, .external_lex_state = 23}, - [811] = {.lex_state = 178, .external_lex_state = 21}, - [812] = {.lex_state = 176, .external_lex_state = 21}, - [813] = {.lex_state = 435, .external_lex_state = 3}, - [814] = {.lex_state = 435, .external_lex_state = 3}, - [815] = {.lex_state = 176, .external_lex_state = 21}, - [816] = {.lex_state = 176, .external_lex_state = 23}, - [817] = {.lex_state = 176, .external_lex_state = 23}, - [818] = {.lex_state = 176, .external_lex_state = 23}, - [819] = {.lex_state = 172, .external_lex_state = 3}, - [820] = {.lex_state = 176, .external_lex_state = 21}, - [821] = {.lex_state = 172, .external_lex_state = 3}, - [822] = {.lex_state = 172, .external_lex_state = 3}, - [823] = {.lex_state = 176, .external_lex_state = 21}, - [824] = {.lex_state = 253, .external_lex_state = 10}, - [825] = {.lex_state = 172, .external_lex_state = 3}, - [826] = {.lex_state = 176, .external_lex_state = 21}, - [827] = {.lex_state = 172, .external_lex_state = 3}, - [828] = {.lex_state = 435, .external_lex_state = 3}, - [829] = {.lex_state = 435, .external_lex_state = 3}, - [830] = {.lex_state = 172, .external_lex_state = 3}, - [831] = {.lex_state = 151, .external_lex_state = 8}, - [832] = {.lex_state = 176, .external_lex_state = 21}, - [833] = {.lex_state = 176, .external_lex_state = 21}, - [834] = {.lex_state = 172, .external_lex_state = 3}, - [835] = {.lex_state = 176, .external_lex_state = 21}, - [836] = {.lex_state = 177, .external_lex_state = 21}, - [837] = {.lex_state = 172, .external_lex_state = 3}, - [838] = {.lex_state = 176, .external_lex_state = 21}, - [839] = {.lex_state = 172, .external_lex_state = 3}, - [840] = {.lex_state = 176, .external_lex_state = 21}, - [841] = {.lex_state = 176, .external_lex_state = 21}, - [842] = {.lex_state = 172, .external_lex_state = 3}, - [843] = {.lex_state = 176, .external_lex_state = 21}, - [844] = {.lex_state = 177, .external_lex_state = 21}, - [845] = {.lex_state = 172, .external_lex_state = 3}, - [846] = {.lex_state = 435, .external_lex_state = 3}, - [847] = {.lex_state = 172, .external_lex_state = 3}, - [848] = {.lex_state = 172, .external_lex_state = 3}, - [849] = {.lex_state = 172, .external_lex_state = 3}, - [850] = {.lex_state = 172, .external_lex_state = 3}, - [851] = {.lex_state = 172, .external_lex_state = 3}, - [852] = {.lex_state = 172, .external_lex_state = 3}, - [853] = {.lex_state = 172, .external_lex_state = 3}, - [854] = {.lex_state = 172, .external_lex_state = 3}, - [855] = {.lex_state = 435, .external_lex_state = 3}, - [856] = {.lex_state = 435, .external_lex_state = 3}, - [857] = {.lex_state = 215, .external_lex_state = 19}, - [858] = {.lex_state = 215, .external_lex_state = 19}, - [859] = {.lex_state = 172, .external_lex_state = 3}, - [860] = {.lex_state = 253, .external_lex_state = 10}, - [861] = {.lex_state = 253, .external_lex_state = 10}, - [862] = {.lex_state = 204, .external_lex_state = 16}, - [863] = {.lex_state = 204, .external_lex_state = 16}, - [864] = {.lex_state = 253, .external_lex_state = 10}, - [865] = {.lex_state = 253, .external_lex_state = 10}, - [866] = {.lex_state = 253, .external_lex_state = 10}, - [867] = {.lex_state = 435, .external_lex_state = 3}, - [868] = {.lex_state = 253, .external_lex_state = 10}, - [869] = {.lex_state = 253, .external_lex_state = 10}, - [870] = {.lex_state = 178, .external_lex_state = 21}, - [871] = {.lex_state = 177, .external_lex_state = 21}, - [872] = {.lex_state = 151, .external_lex_state = 8}, - [873] = {.lex_state = 178, .external_lex_state = 21}, - [874] = {.lex_state = 178, .external_lex_state = 21}, - [875] = {.lex_state = 178, .external_lex_state = 21}, - [876] = {.lex_state = 178, .external_lex_state = 21}, - [877] = {.lex_state = 178, .external_lex_state = 21}, - [878] = {.lex_state = 176, .external_lex_state = 23}, - [879] = {.lex_state = 178, .external_lex_state = 21}, - [880] = {.lex_state = 176, .external_lex_state = 23}, - [881] = {.lex_state = 176, .external_lex_state = 23}, - [882] = {.lex_state = 436, .external_lex_state = 21}, - [883] = {.lex_state = 436, .external_lex_state = 21}, - [884] = {.lex_state = 176, .external_lex_state = 23}, - [885] = {.lex_state = 178, .external_lex_state = 21}, - [886] = {.lex_state = 435, .external_lex_state = 3}, - [887] = {.lex_state = 176, .external_lex_state = 23}, - [888] = {.lex_state = 436, .external_lex_state = 21}, - [889] = {.lex_state = 178, .external_lex_state = 23}, - [890] = {.lex_state = 436, .external_lex_state = 21}, - [891] = {.lex_state = 178, .external_lex_state = 23}, - [892] = {.lex_state = 436, .external_lex_state = 21}, - [893] = {.lex_state = 436, .external_lex_state = 21}, - [894] = {.lex_state = 238, .external_lex_state = 2}, - [895] = {.lex_state = 436, .external_lex_state = 21}, - [896] = {.lex_state = 238, .external_lex_state = 2}, - [897] = {.lex_state = 178, .external_lex_state = 23}, - [898] = {.lex_state = 436, .external_lex_state = 21}, - [899] = {.lex_state = 238, .external_lex_state = 2}, - [900] = {.lex_state = 135, .external_lex_state = 11}, - [901] = {.lex_state = 178, .external_lex_state = 21}, - [902] = {.lex_state = 436, .external_lex_state = 21}, - [903] = {.lex_state = 436, .external_lex_state = 21}, - [904] = {.lex_state = 135, .external_lex_state = 11}, - [905] = {.lex_state = 176, .external_lex_state = 23}, - [906] = {.lex_state = 178, .external_lex_state = 21}, - [907] = {.lex_state = 155, .external_lex_state = 8}, - [908] = {.lex_state = 238, .external_lex_state = 2}, - [909] = {.lex_state = 176, .external_lex_state = 23}, - [910] = {.lex_state = 178, .external_lex_state = 21}, - [911] = {.lex_state = 436, .external_lex_state = 21}, - [912] = {.lex_state = 436, .external_lex_state = 21}, - [913] = {.lex_state = 178, .external_lex_state = 23}, - [914] = {.lex_state = 178, .external_lex_state = 23}, - [915] = {.lex_state = 180, .external_lex_state = 21}, - [916] = {.lex_state = 178, .external_lex_state = 23}, - [917] = {.lex_state = 176, .external_lex_state = 23}, - [918] = {.lex_state = 178, .external_lex_state = 21}, - [919] = {.lex_state = 180, .external_lex_state = 21}, - [920] = {.lex_state = 176, .external_lex_state = 23}, - [921] = {.lex_state = 178, .external_lex_state = 21}, - [922] = {.lex_state = 178, .external_lex_state = 21}, - [923] = {.lex_state = 176, .external_lex_state = 23}, - [924] = {.lex_state = 155, .external_lex_state = 8}, - [925] = {.lex_state = 435, .external_lex_state = 3}, - [926] = {.lex_state = 435, .external_lex_state = 3}, - [927] = {.lex_state = 178, .external_lex_state = 21}, - [928] = {.lex_state = 435, .external_lex_state = 3}, - [929] = {.lex_state = 178, .external_lex_state = 21}, - [930] = {.lex_state = 435, .external_lex_state = 3}, - [931] = {.lex_state = 435, .external_lex_state = 3}, - [932] = {.lex_state = 435, .external_lex_state = 3}, - [933] = {.lex_state = 177, .external_lex_state = 23}, - [934] = {.lex_state = 435, .external_lex_state = 3}, - [935] = {.lex_state = 435, .external_lex_state = 3}, - [936] = {.lex_state = 177, .external_lex_state = 23}, - [937] = {.lex_state = 180, .external_lex_state = 21}, - [938] = {.lex_state = 435, .external_lex_state = 3}, - [939] = {.lex_state = 180, .external_lex_state = 21}, - [940] = {.lex_state = 155, .external_lex_state = 8}, - [941] = {.lex_state = 238, .external_lex_state = 2}, - [942] = {.lex_state = 180, .external_lex_state = 21}, - [943] = {.lex_state = 180, .external_lex_state = 21}, - [944] = {.lex_state = 435, .external_lex_state = 3}, - [945] = {.lex_state = 435, .external_lex_state = 3}, - [946] = {.lex_state = 435, .external_lex_state = 3}, - [947] = {.lex_state = 435, .external_lex_state = 3}, - [948] = {.lex_state = 180, .external_lex_state = 21}, - [949] = {.lex_state = 238, .external_lex_state = 2}, - [950] = {.lex_state = 151, .external_lex_state = 8}, - [951] = {.lex_state = 435, .external_lex_state = 3}, - [952] = {.lex_state = 435, .external_lex_state = 3}, - [953] = {.lex_state = 177, .external_lex_state = 21}, - [954] = {.lex_state = 177, .external_lex_state = 21}, - [955] = {.lex_state = 435, .external_lex_state = 3}, - [956] = {.lex_state = 176, .external_lex_state = 23}, - [957] = {.lex_state = 238, .external_lex_state = 2}, - [958] = {.lex_state = 435, .external_lex_state = 3}, - [959] = {.lex_state = 435, .external_lex_state = 3}, - [960] = {.lex_state = 177, .external_lex_state = 21}, - [961] = {.lex_state = 176, .external_lex_state = 23}, - [962] = {.lex_state = 178, .external_lex_state = 21}, - [963] = {.lex_state = 436, .external_lex_state = 21}, - [964] = {.lex_state = 436, .external_lex_state = 21}, - [965] = {.lex_state = 155, .external_lex_state = 8}, - [966] = {.lex_state = 177, .external_lex_state = 21}, - [967] = {.lex_state = 177, .external_lex_state = 21}, - [968] = {.lex_state = 435, .external_lex_state = 3}, - [969] = {.lex_state = 435, .external_lex_state = 3}, - [970] = {.lex_state = 177, .external_lex_state = 21}, - [971] = {.lex_state = 177, .external_lex_state = 21}, - [972] = {.lex_state = 435, .external_lex_state = 3}, - [973] = {.lex_state = 178, .external_lex_state = 21}, - [974] = {.lex_state = 151, .external_lex_state = 8}, - [975] = {.lex_state = 435, .external_lex_state = 3}, - [976] = {.lex_state = 435, .external_lex_state = 3}, - [977] = {.lex_state = 435, .external_lex_state = 3}, - [978] = {.lex_state = 435, .external_lex_state = 3}, - [979] = {.lex_state = 178, .external_lex_state = 21}, - [980] = {.lex_state = 435, .external_lex_state = 3}, - [981] = {.lex_state = 176, .external_lex_state = 23}, - [982] = {.lex_state = 177, .external_lex_state = 21}, - [983] = {.lex_state = 177, .external_lex_state = 21}, - [984] = {.lex_state = 176, .external_lex_state = 23}, - [985] = {.lex_state = 177, .external_lex_state = 21}, - [986] = {.lex_state = 178, .external_lex_state = 21}, - [987] = {.lex_state = 177, .external_lex_state = 21}, - [988] = {.lex_state = 435, .external_lex_state = 3}, - [989] = {.lex_state = 176, .external_lex_state = 23}, - [990] = {.lex_state = 176, .external_lex_state = 23}, - [991] = {.lex_state = 435, .external_lex_state = 3}, - [992] = {.lex_state = 177, .external_lex_state = 23}, - [993] = {.lex_state = 177, .external_lex_state = 23}, - [994] = {.lex_state = 177, .external_lex_state = 21}, - [995] = {.lex_state = 435, .external_lex_state = 3}, - [996] = {.lex_state = 135, .external_lex_state = 11}, - [997] = {.lex_state = 177, .external_lex_state = 21}, - [998] = {.lex_state = 177, .external_lex_state = 21}, - [999] = {.lex_state = 436, .external_lex_state = 21}, - [1000] = {.lex_state = 436, .external_lex_state = 21}, - [1001] = {.lex_state = 177, .external_lex_state = 21}, - [1002] = {.lex_state = 238, .external_lex_state = 2}, - [1003] = {.lex_state = 151, .external_lex_state = 8}, - [1004] = {.lex_state = 177, .external_lex_state = 23}, - [1005] = {.lex_state = 435, .external_lex_state = 3}, - [1006] = {.lex_state = 435, .external_lex_state = 3}, - [1007] = {.lex_state = 435, .external_lex_state = 3}, - [1008] = {.lex_state = 435, .external_lex_state = 3}, - [1009] = {.lex_state = 435, .external_lex_state = 3}, - [1010] = {.lex_state = 435, .external_lex_state = 3}, - [1011] = {.lex_state = 435, .external_lex_state = 3}, - [1012] = {.lex_state = 435, .external_lex_state = 3}, - [1013] = {.lex_state = 180, .external_lex_state = 21}, - [1014] = {.lex_state = 176, .external_lex_state = 23}, - [1015] = {.lex_state = 435, .external_lex_state = 3}, - [1016] = {.lex_state = 177, .external_lex_state = 21}, - [1017] = {.lex_state = 176, .external_lex_state = 23}, - [1018] = {.lex_state = 176, .external_lex_state = 23}, - [1019] = {.lex_state = 177, .external_lex_state = 21}, - [1020] = {.lex_state = 176, .external_lex_state = 23}, - [1021] = {.lex_state = 435, .external_lex_state = 3}, - [1022] = {.lex_state = 435, .external_lex_state = 3}, - [1023] = {.lex_state = 435, .external_lex_state = 3}, - [1024] = {.lex_state = 435, .external_lex_state = 3}, - [1025] = {.lex_state = 177, .external_lex_state = 23}, - [1026] = {.lex_state = 253, .external_lex_state = 10}, - [1027] = {.lex_state = 177, .external_lex_state = 21}, - [1028] = {.lex_state = 177, .external_lex_state = 21}, - [1029] = {.lex_state = 435, .external_lex_state = 3}, - [1030] = {.lex_state = 435, .external_lex_state = 3}, - [1031] = {.lex_state = 435, .external_lex_state = 3}, - [1032] = {.lex_state = 435, .external_lex_state = 3}, - [1033] = {.lex_state = 435, .external_lex_state = 3}, - [1034] = {.lex_state = 435, .external_lex_state = 3}, - [1035] = {.lex_state = 177, .external_lex_state = 23}, - [1036] = {.lex_state = 135, .external_lex_state = 11}, - [1037] = {.lex_state = 180, .external_lex_state = 23}, - [1038] = {.lex_state = 178, .external_lex_state = 23}, - [1039] = {.lex_state = 178, .external_lex_state = 23}, - [1040] = {.lex_state = 436, .external_lex_state = 21}, - [1041] = {.lex_state = 436, .external_lex_state = 21}, - [1042] = {.lex_state = 178, .external_lex_state = 23}, - [1043] = {.lex_state = 436, .external_lex_state = 21}, - [1044] = {.lex_state = 166, .external_lex_state = 11}, - [1045] = {.lex_state = 180, .external_lex_state = 21}, - [1046] = {.lex_state = 178, .external_lex_state = 23}, - [1047] = {.lex_state = 178, .external_lex_state = 23}, - [1048] = {.lex_state = 436, .external_lex_state = 21}, - [1049] = {.lex_state = 147, .external_lex_state = 11}, - [1050] = {.lex_state = 177, .external_lex_state = 23}, - [1051] = {.lex_state = 436, .external_lex_state = 21}, - [1052] = {.lex_state = 180, .external_lex_state = 21}, - [1053] = {.lex_state = 436, .external_lex_state = 21}, - [1054] = {.lex_state = 178, .external_lex_state = 23}, - [1055] = {.lex_state = 178, .external_lex_state = 23}, - [1056] = {.lex_state = 177, .external_lex_state = 23}, - [1057] = {.lex_state = 180, .external_lex_state = 21}, - [1058] = {.lex_state = 178, .external_lex_state = 23}, - [1059] = {.lex_state = 432, .external_lex_state = 8}, - [1060] = {.lex_state = 436, .external_lex_state = 21}, - [1061] = {.lex_state = 432, .external_lex_state = 8}, - [1062] = {.lex_state = 178, .external_lex_state = 23}, - [1063] = {.lex_state = 436, .external_lex_state = 21}, - [1064] = {.lex_state = 180, .external_lex_state = 23}, - [1065] = {.lex_state = 436, .external_lex_state = 21}, - [1066] = {.lex_state = 436, .external_lex_state = 21}, - [1067] = {.lex_state = 180, .external_lex_state = 23}, - [1068] = {.lex_state = 164, .external_lex_state = 11}, - [1069] = {.lex_state = 177, .external_lex_state = 23}, - [1070] = {.lex_state = 180, .external_lex_state = 21}, - [1071] = {.lex_state = 178, .external_lex_state = 23}, - [1072] = {.lex_state = 437, .external_lex_state = 21}, - [1073] = {.lex_state = 437, .external_lex_state = 21}, - [1074] = {.lex_state = 437, .external_lex_state = 21}, - [1075] = {.lex_state = 177, .external_lex_state = 23}, - [1076] = {.lex_state = 436, .external_lex_state = 21}, - [1077] = {.lex_state = 178, .external_lex_state = 23}, - [1078] = {.lex_state = 436, .external_lex_state = 23}, - [1079] = {.lex_state = 432, .external_lex_state = 8}, - [1080] = {.lex_state = 436, .external_lex_state = 23}, - [1081] = {.lex_state = 180, .external_lex_state = 23}, - [1082] = {.lex_state = 180, .external_lex_state = 21}, - [1083] = {.lex_state = 177, .external_lex_state = 23}, - [1084] = {.lex_state = 436, .external_lex_state = 21}, - [1085] = {.lex_state = 180, .external_lex_state = 21}, - [1086] = {.lex_state = 177, .external_lex_state = 23}, - [1087] = {.lex_state = 180, .external_lex_state = 21}, - [1088] = {.lex_state = 180, .external_lex_state = 21}, - [1089] = {.lex_state = 177, .external_lex_state = 23}, - [1090] = {.lex_state = 166, .external_lex_state = 11}, - [1091] = {.lex_state = 436, .external_lex_state = 23}, - [1092] = {.lex_state = 180, .external_lex_state = 21}, - [1093] = {.lex_state = 180, .external_lex_state = 21}, - [1094] = {.lex_state = 178, .external_lex_state = 23}, - [1095] = {.lex_state = 436, .external_lex_state = 21}, - [1096] = {.lex_state = 432, .external_lex_state = 8}, - [1097] = {.lex_state = 177, .external_lex_state = 23}, - [1098] = {.lex_state = 436, .external_lex_state = 21}, - [1099] = {.lex_state = 177, .external_lex_state = 23}, - [1100] = {.lex_state = 180, .external_lex_state = 21}, - [1101] = {.lex_state = 436, .external_lex_state = 23}, - [1102] = {.lex_state = 436, .external_lex_state = 23}, - [1103] = {.lex_state = 135, .external_lex_state = 12}, - [1104] = {.lex_state = 432, .external_lex_state = 8}, - [1105] = {.lex_state = 177, .external_lex_state = 23}, - [1106] = {.lex_state = 436, .external_lex_state = 21}, - [1107] = {.lex_state = 177, .external_lex_state = 23}, - [1108] = {.lex_state = 178, .external_lex_state = 23}, - [1109] = {.lex_state = 436, .external_lex_state = 21}, - [1110] = {.lex_state = 436, .external_lex_state = 23}, - [1111] = {.lex_state = 436, .external_lex_state = 21}, - [1112] = {.lex_state = 177, .external_lex_state = 23}, - [1113] = {.lex_state = 180, .external_lex_state = 21}, - [1114] = {.lex_state = 180, .external_lex_state = 21}, - [1115] = {.lex_state = 180, .external_lex_state = 21}, - [1116] = {.lex_state = 436, .external_lex_state = 21}, - [1117] = {.lex_state = 436, .external_lex_state = 21}, - [1118] = {.lex_state = 177, .external_lex_state = 23}, - [1119] = {.lex_state = 180, .external_lex_state = 21}, - [1120] = {.lex_state = 436, .external_lex_state = 21}, - [1121] = {.lex_state = 177, .external_lex_state = 23}, - [1122] = {.lex_state = 437, .external_lex_state = 21}, - [1123] = {.lex_state = 177, .external_lex_state = 23}, - [1124] = {.lex_state = 437, .external_lex_state = 21}, - [1125] = {.lex_state = 437, .external_lex_state = 21}, - [1126] = {.lex_state = 437, .external_lex_state = 21}, - [1127] = {.lex_state = 437, .external_lex_state = 21}, - [1128] = {.lex_state = 437, .external_lex_state = 21}, - [1129] = {.lex_state = 437, .external_lex_state = 21}, - [1130] = {.lex_state = 164, .external_lex_state = 11}, - [1131] = {.lex_state = 437, .external_lex_state = 21}, - [1132] = {.lex_state = 155, .external_lex_state = 8}, - [1133] = {.lex_state = 178, .external_lex_state = 23}, - [1134] = {.lex_state = 178, .external_lex_state = 23}, - [1135] = {.lex_state = 436, .external_lex_state = 23}, - [1136] = {.lex_state = 436, .external_lex_state = 23}, - [1137] = {.lex_state = 135, .external_lex_state = 11}, - [1138] = {.lex_state = 177, .external_lex_state = 23}, - [1139] = {.lex_state = 432, .external_lex_state = 8}, - [1140] = {.lex_state = 164, .external_lex_state = 11}, - [1141] = {.lex_state = 177, .external_lex_state = 23}, - [1142] = {.lex_state = 177, .external_lex_state = 23}, - [1143] = {.lex_state = 177, .external_lex_state = 23}, - [1144] = {.lex_state = 436, .external_lex_state = 21}, - [1145] = {.lex_state = 437, .external_lex_state = 21}, - [1146] = {.lex_state = 155, .external_lex_state = 8}, - [1147] = {.lex_state = 437, .external_lex_state = 21}, - [1148] = {.lex_state = 180, .external_lex_state = 21}, - [1149] = {.lex_state = 135, .external_lex_state = 12}, - [1150] = {.lex_state = 436, .external_lex_state = 21}, - [1151] = {.lex_state = 436, .external_lex_state = 21}, - [1152] = {.lex_state = 178, .external_lex_state = 23}, - [1153] = {.lex_state = 436, .external_lex_state = 21}, - [1154] = {.lex_state = 432, .external_lex_state = 8}, - [1155] = {.lex_state = 436, .external_lex_state = 21}, - [1156] = {.lex_state = 436, .external_lex_state = 23}, - [1157] = {.lex_state = 436, .external_lex_state = 21}, - [1158] = {.lex_state = 178, .external_lex_state = 23}, - [1159] = {.lex_state = 436, .external_lex_state = 23}, - [1160] = {.lex_state = 178, .external_lex_state = 23}, - [1161] = {.lex_state = 436, .external_lex_state = 21}, - [1162] = {.lex_state = 436, .external_lex_state = 21}, - [1163] = {.lex_state = 436, .external_lex_state = 21}, - [1164] = {.lex_state = 436, .external_lex_state = 21}, - [1165] = {.lex_state = 436, .external_lex_state = 23}, - [1166] = {.lex_state = 437, .external_lex_state = 21}, - [1167] = {.lex_state = 436, .external_lex_state = 21}, - [1168] = {.lex_state = 436, .external_lex_state = 21}, - [1169] = {.lex_state = 437, .external_lex_state = 21}, - [1170] = {.lex_state = 436, .external_lex_state = 21}, - [1171] = {.lex_state = 436, .external_lex_state = 21}, - [1172] = {.lex_state = 180, .external_lex_state = 21}, - [1173] = {.lex_state = 436, .external_lex_state = 21}, - [1174] = {.lex_state = 436, .external_lex_state = 21}, - [1175] = {.lex_state = 436, .external_lex_state = 21}, - [1176] = {.lex_state = 436, .external_lex_state = 21}, - [1177] = {.lex_state = 178, .external_lex_state = 23}, - [1178] = {.lex_state = 180, .external_lex_state = 23}, - [1179] = {.lex_state = 180, .external_lex_state = 23}, - [1180] = {.lex_state = 436, .external_lex_state = 21}, - [1181] = {.lex_state = 436, .external_lex_state = 21}, - [1182] = {.lex_state = 436, .external_lex_state = 21}, - [1183] = {.lex_state = 155, .external_lex_state = 8}, - [1184] = {.lex_state = 166, .external_lex_state = 11}, - [1185] = {.lex_state = 436, .external_lex_state = 23}, - [1186] = {.lex_state = 432, .external_lex_state = 8}, - [1187] = {.lex_state = 436, .external_lex_state = 21}, - [1188] = {.lex_state = 436, .external_lex_state = 21}, - [1189] = {.lex_state = 436, .external_lex_state = 21}, - [1190] = {.lex_state = 180, .external_lex_state = 21}, - [1191] = {.lex_state = 178, .external_lex_state = 23}, - [1192] = {.lex_state = 147, .external_lex_state = 11}, - [1193] = {.lex_state = 147, .external_lex_state = 11}, - [1194] = {.lex_state = 135, .external_lex_state = 11}, - [1195] = {.lex_state = 436, .external_lex_state = 21}, - [1196] = {.lex_state = 436, .external_lex_state = 21}, - [1197] = {.lex_state = 436, .external_lex_state = 21}, - [1198] = {.lex_state = 180, .external_lex_state = 21}, - [1199] = {.lex_state = 135, .external_lex_state = 11}, - [1200] = {.lex_state = 155, .external_lex_state = 8}, - [1201] = {.lex_state = 180, .external_lex_state = 21}, - [1202] = {.lex_state = 437, .external_lex_state = 21}, - [1203] = {.lex_state = 437, .external_lex_state = 21}, - [1204] = {.lex_state = 166, .external_lex_state = 11}, - [1205] = {.lex_state = 437, .external_lex_state = 21}, - [1206] = {.lex_state = 437, .external_lex_state = 21}, - [1207] = {.lex_state = 437, .external_lex_state = 21}, - [1208] = {.lex_state = 437, .external_lex_state = 21}, - [1209] = {.lex_state = 436, .external_lex_state = 23}, - [1210] = {.lex_state = 437, .external_lex_state = 21}, - [1211] = {.lex_state = 437, .external_lex_state = 21}, - [1212] = {.lex_state = 437, .external_lex_state = 23}, - [1213] = {.lex_state = 437, .external_lex_state = 23}, - [1214] = {.lex_state = 436, .external_lex_state = 23}, - [1215] = {.lex_state = 437, .external_lex_state = 21}, - [1216] = {.lex_state = 164, .external_lex_state = 11}, - [1217] = {.lex_state = 437, .external_lex_state = 21}, - [1218] = {.lex_state = 437, .external_lex_state = 21}, - [1219] = {.lex_state = 436, .external_lex_state = 23}, - [1220] = {.lex_state = 436, .external_lex_state = 23}, - [1221] = {.lex_state = 437, .external_lex_state = 21}, - [1222] = {.lex_state = 147, .external_lex_state = 11}, - [1223] = {.lex_state = 436, .external_lex_state = 23}, - [1224] = {.lex_state = 436, .external_lex_state = 23}, - [1225] = {.lex_state = 437, .external_lex_state = 21}, - [1226] = {.lex_state = 147, .external_lex_state = 12}, - [1227] = {.lex_state = 437, .external_lex_state = 21}, - [1228] = {.lex_state = 437, .external_lex_state = 21}, - [1229] = {.lex_state = 436, .external_lex_state = 23}, - [1230] = {.lex_state = 436, .external_lex_state = 23}, - [1231] = {.lex_state = 436, .external_lex_state = 23}, - [1232] = {.lex_state = 436, .external_lex_state = 23}, - [1233] = {.lex_state = 437, .external_lex_state = 21}, - [1234] = {.lex_state = 437, .external_lex_state = 21}, - [1235] = {.lex_state = 436, .external_lex_state = 23}, - [1236] = {.lex_state = 436, .external_lex_state = 23}, - [1237] = {.lex_state = 437, .external_lex_state = 21}, - [1238] = {.lex_state = 437, .external_lex_state = 21}, - [1239] = {.lex_state = 436, .external_lex_state = 23}, - [1240] = {.lex_state = 166, .external_lex_state = 11}, - [1241] = {.lex_state = 437, .external_lex_state = 21}, - [1242] = {.lex_state = 436, .external_lex_state = 23}, - [1243] = {.lex_state = 437, .external_lex_state = 21}, - [1244] = {.lex_state = 437, .external_lex_state = 21}, - [1245] = {.lex_state = 437, .external_lex_state = 21}, - [1246] = {.lex_state = 436, .external_lex_state = 23}, - [1247] = {.lex_state = 437, .external_lex_state = 21}, - [1248] = {.lex_state = 164, .external_lex_state = 12}, - [1249] = {.lex_state = 437, .external_lex_state = 21}, - [1250] = {.lex_state = 436, .external_lex_state = 23}, - [1251] = {.lex_state = 436, .external_lex_state = 23}, - [1252] = {.lex_state = 436, .external_lex_state = 23}, - [1253] = {.lex_state = 436, .external_lex_state = 23}, - [1254] = {.lex_state = 164, .external_lex_state = 12}, - [1255] = {.lex_state = 147, .external_lex_state = 11}, - [1256] = {.lex_state = 437, .external_lex_state = 21}, - [1257] = {.lex_state = 437, .external_lex_state = 21}, - [1258] = {.lex_state = 147, .external_lex_state = 11}, - [1259] = {.lex_state = 436, .external_lex_state = 23}, - [1260] = {.lex_state = 436, .external_lex_state = 23}, - [1261] = {.lex_state = 164, .external_lex_state = 11}, - [1262] = {.lex_state = 164, .external_lex_state = 11}, - [1263] = {.lex_state = 436, .external_lex_state = 23}, - [1264] = {.lex_state = 436, .external_lex_state = 23}, - [1265] = {.lex_state = 432, .external_lex_state = 8}, - [1266] = {.lex_state = 436, .external_lex_state = 23}, - [1267] = {.lex_state = 436, .external_lex_state = 23}, - [1268] = {.lex_state = 431, .external_lex_state = 11}, - [1269] = {.lex_state = 180, .external_lex_state = 23}, - [1270] = {.lex_state = 437, .external_lex_state = 21}, - [1271] = {.lex_state = 180, .external_lex_state = 23}, - [1272] = {.lex_state = 437, .external_lex_state = 21}, - [1273] = {.lex_state = 180, .external_lex_state = 23}, - [1274] = {.lex_state = 135, .external_lex_state = 12}, - [1275] = {.lex_state = 432, .external_lex_state = 8}, - [1276] = {.lex_state = 437, .external_lex_state = 21}, - [1277] = {.lex_state = 180, .external_lex_state = 23}, - [1278] = {.lex_state = 432, .external_lex_state = 8}, - [1279] = {.lex_state = 180, .external_lex_state = 23}, - [1280] = {.lex_state = 437, .external_lex_state = 21}, - [1281] = {.lex_state = 437, .external_lex_state = 23}, - [1282] = {.lex_state = 432, .external_lex_state = 8}, - [1283] = {.lex_state = 172, .external_lex_state = 3}, - [1284] = {.lex_state = 437, .external_lex_state = 21}, - [1285] = {.lex_state = 180, .external_lex_state = 23}, - [1286] = {.lex_state = 180, .external_lex_state = 23}, - [1287] = {.lex_state = 437, .external_lex_state = 21}, - [1288] = {.lex_state = 437, .external_lex_state = 21}, - [1289] = {.lex_state = 431, .external_lex_state = 11}, - [1290] = {.lex_state = 180, .external_lex_state = 23}, - [1291] = {.lex_state = 164, .external_lex_state = 11}, - [1292] = {.lex_state = 437, .external_lex_state = 21}, - [1293] = {.lex_state = 437, .external_lex_state = 21}, - [1294] = {.lex_state = 180, .external_lex_state = 23}, - [1295] = {.lex_state = 431, .external_lex_state = 11}, - [1296] = {.lex_state = 437, .external_lex_state = 21}, - [1297] = {.lex_state = 437, .external_lex_state = 21}, - [1298] = {.lex_state = 437, .external_lex_state = 21}, - [1299] = {.lex_state = 164, .external_lex_state = 11}, - [1300] = {.lex_state = 437, .external_lex_state = 21}, - [1301] = {.lex_state = 180, .external_lex_state = 23}, - [1302] = {.lex_state = 437, .external_lex_state = 21}, - [1303] = {.lex_state = 437, .external_lex_state = 23}, - [1304] = {.lex_state = 436, .external_lex_state = 23}, - [1305] = {.lex_state = 436, .external_lex_state = 23}, - [1306] = {.lex_state = 436, .external_lex_state = 23}, - [1307] = {.lex_state = 436, .external_lex_state = 23}, - [1308] = {.lex_state = 436, .external_lex_state = 23}, - [1309] = {.lex_state = 436, .external_lex_state = 23}, - [1310] = {.lex_state = 437, .external_lex_state = 23}, - [1311] = {.lex_state = 437, .external_lex_state = 23}, - [1312] = {.lex_state = 436, .external_lex_state = 23}, - [1313] = {.lex_state = 436, .external_lex_state = 23}, - [1314] = {.lex_state = 436, .external_lex_state = 23}, - [1315] = {.lex_state = 180, .external_lex_state = 23}, - [1316] = {.lex_state = 436, .external_lex_state = 23}, - [1317] = {.lex_state = 436, .external_lex_state = 23}, - [1318] = {.lex_state = 436, .external_lex_state = 23}, - [1319] = {.lex_state = 436, .external_lex_state = 23}, - [1320] = {.lex_state = 436, .external_lex_state = 23}, - [1321] = {.lex_state = 437, .external_lex_state = 21}, - [1322] = {.lex_state = 240, .external_lex_state = 13}, - [1323] = {.lex_state = 436, .external_lex_state = 23}, - [1324] = {.lex_state = 240, .external_lex_state = 13}, - [1325] = {.lex_state = 436, .external_lex_state = 23}, - [1326] = {.lex_state = 436, .external_lex_state = 23}, - [1327] = {.lex_state = 436, .external_lex_state = 23}, - [1328] = {.lex_state = 240, .external_lex_state = 13}, - [1329] = {.lex_state = 180, .external_lex_state = 23}, - [1330] = {.lex_state = 437, .external_lex_state = 21}, - [1331] = {.lex_state = 436, .external_lex_state = 23}, - [1332] = {.lex_state = 437, .external_lex_state = 21}, - [1333] = {.lex_state = 436, .external_lex_state = 23}, - [1334] = {.lex_state = 437, .external_lex_state = 23}, - [1335] = {.lex_state = 180, .external_lex_state = 23}, - [1336] = {.lex_state = 431, .external_lex_state = 11}, - [1337] = {.lex_state = 437, .external_lex_state = 23}, - [1338] = {.lex_state = 180, .external_lex_state = 23}, - [1339] = {.lex_state = 437, .external_lex_state = 23}, - [1340] = {.lex_state = 437, .external_lex_state = 21}, - [1341] = {.lex_state = 432, .external_lex_state = 8}, - [1342] = {.lex_state = 432, .external_lex_state = 8}, - [1343] = {.lex_state = 180, .external_lex_state = 23}, - [1344] = {.lex_state = 437, .external_lex_state = 21}, - [1345] = {.lex_state = 166, .external_lex_state = 11}, - [1346] = {.lex_state = 180, .external_lex_state = 23}, - [1347] = {.lex_state = 164, .external_lex_state = 11}, - [1348] = {.lex_state = 431, .external_lex_state = 11}, - [1349] = {.lex_state = 180, .external_lex_state = 23}, - [1350] = {.lex_state = 147, .external_lex_state = 12}, - [1351] = {.lex_state = 180, .external_lex_state = 23}, - [1352] = {.lex_state = 432, .external_lex_state = 8}, - [1353] = {.lex_state = 437, .external_lex_state = 23}, - [1354] = {.lex_state = 437, .external_lex_state = 23}, - [1355] = {.lex_state = 437, .external_lex_state = 21}, - [1356] = {.lex_state = 437, .external_lex_state = 23}, - [1357] = {.lex_state = 147, .external_lex_state = 11}, - [1358] = {.lex_state = 432, .external_lex_state = 8}, - [1359] = {.lex_state = 180, .external_lex_state = 23}, - [1360] = {.lex_state = 437, .external_lex_state = 21}, - [1361] = {.lex_state = 431, .external_lex_state = 11}, - [1362] = {.lex_state = 180, .external_lex_state = 23}, - [1363] = {.lex_state = 437, .external_lex_state = 23}, - [1364] = {.lex_state = 437, .external_lex_state = 23}, - [1365] = {.lex_state = 166, .external_lex_state = 11}, - [1366] = {.lex_state = 172, .external_lex_state = 3}, - [1367] = {.lex_state = 431, .external_lex_state = 11}, - [1368] = {.lex_state = 166, .external_lex_state = 11}, - [1369] = {.lex_state = 172, .external_lex_state = 3}, - [1370] = {.lex_state = 434, .external_lex_state = 11}, - [1371] = {.lex_state = 431, .external_lex_state = 11}, - [1372] = {.lex_state = 431, .external_lex_state = 12}, - [1373] = {.lex_state = 434, .external_lex_state = 11}, - [1374] = {.lex_state = 431, .external_lex_state = 11}, - [1375] = {.lex_state = 437, .external_lex_state = 23}, - [1376] = {.lex_state = 431, .external_lex_state = 11}, - [1377] = {.lex_state = 172, .external_lex_state = 3}, - [1378] = {.lex_state = 172, .external_lex_state = 3}, - [1379] = {.lex_state = 437, .external_lex_state = 23}, - [1380] = {.lex_state = 218, .external_lex_state = 24}, - [1381] = {.lex_state = 437, .external_lex_state = 23}, - [1382] = {.lex_state = 172, .external_lex_state = 3}, - [1383] = {.lex_state = 437, .external_lex_state = 23}, - [1384] = {.lex_state = 437, .external_lex_state = 23}, - [1385] = {.lex_state = 431, .external_lex_state = 11}, - [1386] = {.lex_state = 166, .external_lex_state = 12}, - [1387] = {.lex_state = 241, .external_lex_state = 25}, - [1388] = {.lex_state = 166, .external_lex_state = 11}, - [1389] = {.lex_state = 166, .external_lex_state = 11}, - [1390] = {.lex_state = 431, .external_lex_state = 12}, - [1391] = {.lex_state = 437, .external_lex_state = 23}, - [1392] = {.lex_state = 172, .external_lex_state = 3}, - [1393] = {.lex_state = 172, .external_lex_state = 3}, - [1394] = {.lex_state = 431, .external_lex_state = 11}, - [1395] = {.lex_state = 437, .external_lex_state = 23}, - [1396] = {.lex_state = 437, .external_lex_state = 23}, - [1397] = {.lex_state = 172, .external_lex_state = 3}, - [1398] = {.lex_state = 437, .external_lex_state = 23}, - [1399] = {.lex_state = 437, .external_lex_state = 23}, - [1400] = {.lex_state = 437, .external_lex_state = 23}, - [1401] = {.lex_state = 437, .external_lex_state = 23}, - [1402] = {.lex_state = 437, .external_lex_state = 23}, - [1403] = {.lex_state = 437, .external_lex_state = 23}, - [1404] = {.lex_state = 431, .external_lex_state = 12}, - [1405] = {.lex_state = 437, .external_lex_state = 23}, - [1406] = {.lex_state = 437, .external_lex_state = 23}, - [1407] = {.lex_state = 172, .external_lex_state = 3}, - [1408] = {.lex_state = 166, .external_lex_state = 11}, - [1409] = {.lex_state = 437, .external_lex_state = 23}, - [1410] = {.lex_state = 437, .external_lex_state = 23}, - [1411] = {.lex_state = 437, .external_lex_state = 23}, - [1412] = {.lex_state = 437, .external_lex_state = 23}, - [1413] = {.lex_state = 200, .external_lex_state = 10}, - [1414] = {.lex_state = 200, .external_lex_state = 10}, - [1415] = {.lex_state = 166, .external_lex_state = 12}, - [1416] = {.lex_state = 217, .external_lex_state = 24}, - [1417] = {.lex_state = 437, .external_lex_state = 23}, - [1418] = {.lex_state = 437, .external_lex_state = 23}, - [1419] = {.lex_state = 434, .external_lex_state = 11}, - [1420] = {.lex_state = 437, .external_lex_state = 23}, - [1421] = {.lex_state = 431, .external_lex_state = 12}, - [1422] = {.lex_state = 437, .external_lex_state = 23}, - [1423] = {.lex_state = 147, .external_lex_state = 12}, - [1424] = {.lex_state = 164, .external_lex_state = 12}, - [1425] = {.lex_state = 437, .external_lex_state = 23}, - [1426] = {.lex_state = 437, .external_lex_state = 23}, - [1427] = {.lex_state = 437, .external_lex_state = 23}, - [1428] = {.lex_state = 437, .external_lex_state = 23}, - [1429] = {.lex_state = 437, .external_lex_state = 23}, - [1430] = {.lex_state = 437, .external_lex_state = 23}, - [1431] = {.lex_state = 437, .external_lex_state = 23}, - [1432] = {.lex_state = 431, .external_lex_state = 11}, - [1433] = {.lex_state = 437, .external_lex_state = 23}, - [1434] = {.lex_state = 431, .external_lex_state = 11}, - [1435] = {.lex_state = 437, .external_lex_state = 23}, - [1436] = {.lex_state = 437, .external_lex_state = 23}, - [1437] = {.lex_state = 437, .external_lex_state = 23}, - [1438] = {.lex_state = 434, .external_lex_state = 11}, - [1439] = {.lex_state = 437, .external_lex_state = 23}, - [1440] = {.lex_state = 437, .external_lex_state = 23}, - [1441] = {.lex_state = 437, .external_lex_state = 23}, - [1442] = {.lex_state = 437, .external_lex_state = 23}, - [1443] = {.lex_state = 434, .external_lex_state = 11}, - [1444] = {.lex_state = 437, .external_lex_state = 23}, - [1445] = {.lex_state = 437, .external_lex_state = 23}, - [1446] = {.lex_state = 434, .external_lex_state = 11}, - [1447] = {.lex_state = 166, .external_lex_state = 11}, - [1448] = {.lex_state = 437, .external_lex_state = 23}, - [1449] = {.lex_state = 437, .external_lex_state = 23}, - [1450] = {.lex_state = 434, .external_lex_state = 11}, - [1451] = {.lex_state = 434, .external_lex_state = 11}, - [1452] = {.lex_state = 434, .external_lex_state = 11}, - [1453] = {.lex_state = 434, .external_lex_state = 11}, - [1454] = {.lex_state = 434, .external_lex_state = 11}, - [1455] = {.lex_state = 434, .external_lex_state = 11}, - [1456] = {.lex_state = 434, .external_lex_state = 11}, - [1457] = {.lex_state = 434, .external_lex_state = 11}, - [1458] = {.lex_state = 218, .external_lex_state = 24}, - [1459] = {.lex_state = 241, .external_lex_state = 25}, - [1460] = {.lex_state = 241, .external_lex_state = 25}, - [1461] = {.lex_state = 434, .external_lex_state = 11}, - [1462] = {.lex_state = 434, .external_lex_state = 11}, - [1463] = {.lex_state = 238, .external_lex_state = 2}, - [1464] = {.lex_state = 434, .external_lex_state = 11}, - [1465] = {.lex_state = 434, .external_lex_state = 12}, - [1466] = {.lex_state = 434, .external_lex_state = 11}, - [1467] = {.lex_state = 238, .external_lex_state = 2}, - [1468] = {.lex_state = 431, .external_lex_state = 12}, - [1469] = {.lex_state = 434, .external_lex_state = 11}, - [1470] = {.lex_state = 218, .external_lex_state = 24}, - [1471] = {.lex_state = 241, .external_lex_state = 25}, - [1472] = {.lex_state = 223, .external_lex_state = 17}, - [1473] = {.lex_state = 217, .external_lex_state = 24}, - [1474] = {.lex_state = 434, .external_lex_state = 11}, - [1475] = {.lex_state = 241, .external_lex_state = 25}, - [1476] = {.lex_state = 434, .external_lex_state = 11}, - [1477] = {.lex_state = 434, .external_lex_state = 11}, - [1478] = {.lex_state = 434, .external_lex_state = 11}, - [1479] = {.lex_state = 434, .external_lex_state = 11}, - [1480] = {.lex_state = 217, .external_lex_state = 24}, - [1481] = {.lex_state = 434, .external_lex_state = 11}, - [1482] = {.lex_state = 217, .external_lex_state = 24}, - [1483] = {.lex_state = 434, .external_lex_state = 11}, - [1484] = {.lex_state = 434, .external_lex_state = 11}, - [1485] = {.lex_state = 217, .external_lex_state = 24}, - [1486] = {.lex_state = 166, .external_lex_state = 12}, - [1487] = {.lex_state = 434, .external_lex_state = 11}, - [1488] = {.lex_state = 217, .external_lex_state = 24}, - [1489] = {.lex_state = 434, .external_lex_state = 11}, - [1490] = {.lex_state = 434, .external_lex_state = 11}, - [1491] = {.lex_state = 217, .external_lex_state = 24}, - [1492] = {.lex_state = 434, .external_lex_state = 11}, - [1493] = {.lex_state = 434, .external_lex_state = 11}, - [1494] = {.lex_state = 434, .external_lex_state = 11}, - [1495] = {.lex_state = 434, .external_lex_state = 11}, - [1496] = {.lex_state = 434, .external_lex_state = 12}, - [1497] = {.lex_state = 218, .external_lex_state = 24}, - [1498] = {.lex_state = 434, .external_lex_state = 11}, - [1499] = {.lex_state = 434, .external_lex_state = 11}, - [1500] = {.lex_state = 434, .external_lex_state = 11}, - [1501] = {.lex_state = 434, .external_lex_state = 11}, - [1502] = {.lex_state = 431, .external_lex_state = 12}, - [1503] = {.lex_state = 434, .external_lex_state = 11}, - [1504] = {.lex_state = 217, .external_lex_state = 24}, - [1505] = {.lex_state = 217, .external_lex_state = 24}, - [1506] = {.lex_state = 217, .external_lex_state = 24}, - [1507] = {.lex_state = 177, .external_lex_state = 21}, - [1508] = {.lex_state = 434, .external_lex_state = 11}, - [1509] = {.lex_state = 434, .external_lex_state = 11}, - [1510] = {.lex_state = 434, .external_lex_state = 11}, - [1511] = {.lex_state = 217, .external_lex_state = 24}, - [1512] = {.lex_state = 434, .external_lex_state = 11}, - [1513] = {.lex_state = 220, .external_lex_state = 24}, - [1514] = {.lex_state = 434, .external_lex_state = 11}, - [1515] = {.lex_state = 177, .external_lex_state = 21}, - [1516] = {.lex_state = 434, .external_lex_state = 11}, - [1517] = {.lex_state = 177, .external_lex_state = 21}, - [1518] = {.lex_state = 241, .external_lex_state = 25}, - [1519] = {.lex_state = 434, .external_lex_state = 12}, - [1520] = {.lex_state = 238, .external_lex_state = 2}, - [1521] = {.lex_state = 241, .external_lex_state = 25}, - [1522] = {.lex_state = 217, .external_lex_state = 24}, - [1523] = {.lex_state = 434, .external_lex_state = 11}, - [1524] = {.lex_state = 241, .external_lex_state = 25}, - [1525] = {.lex_state = 241, .external_lex_state = 25}, - [1526] = {.lex_state = 434, .external_lex_state = 11}, - [1527] = {.lex_state = 223, .external_lex_state = 17}, - [1528] = {.lex_state = 217, .external_lex_state = 24}, - [1529] = {.lex_state = 434, .external_lex_state = 11}, - [1530] = {.lex_state = 177, .external_lex_state = 21}, - [1531] = {.lex_state = 434, .external_lex_state = 11}, - [1532] = {.lex_state = 217, .external_lex_state = 24}, - [1533] = {.lex_state = 177, .external_lex_state = 21}, - [1534] = {.lex_state = 434, .external_lex_state = 11}, - [1535] = {.lex_state = 434, .external_lex_state = 11}, - [1536] = {.lex_state = 434, .external_lex_state = 11}, - [1537] = {.lex_state = 217, .external_lex_state = 24}, - [1538] = {.lex_state = 434, .external_lex_state = 11}, - [1539] = {.lex_state = 241, .external_lex_state = 25}, - [1540] = {.lex_state = 434, .external_lex_state = 11}, - [1541] = {.lex_state = 434, .external_lex_state = 11}, - [1542] = {.lex_state = 217, .external_lex_state = 24}, - [1543] = {.lex_state = 434, .external_lex_state = 11}, - [1544] = {.lex_state = 241, .external_lex_state = 25}, - [1545] = {.lex_state = 217, .external_lex_state = 24}, - [1546] = {.lex_state = 218, .external_lex_state = 24}, - [1547] = {.lex_state = 218, .external_lex_state = 24}, - [1548] = {.lex_state = 434, .external_lex_state = 11}, - [1549] = {.lex_state = 434, .external_lex_state = 11}, - [1550] = {.lex_state = 434, .external_lex_state = 11}, - [1551] = {.lex_state = 217, .external_lex_state = 24}, - [1552] = {.lex_state = 434, .external_lex_state = 11}, - [1553] = {.lex_state = 434, .external_lex_state = 11}, - [1554] = {.lex_state = 434, .external_lex_state = 11}, - [1555] = {.lex_state = 434, .external_lex_state = 12}, - [1556] = {.lex_state = 434, .external_lex_state = 11}, - [1557] = {.lex_state = 218, .external_lex_state = 24}, - [1558] = {.lex_state = 217, .external_lex_state = 24}, - [1559] = {.lex_state = 434, .external_lex_state = 11}, - [1560] = {.lex_state = 434, .external_lex_state = 11}, - [1561] = {.lex_state = 217, .external_lex_state = 24}, - [1562] = {.lex_state = 434, .external_lex_state = 11}, - [1563] = {.lex_state = 434, .external_lex_state = 11}, - [1564] = {.lex_state = 434, .external_lex_state = 11}, - [1565] = {.lex_state = 177, .external_lex_state = 21}, - [1566] = {.lex_state = 217, .external_lex_state = 24}, - [1567] = {.lex_state = 434, .external_lex_state = 11}, - [1568] = {.lex_state = 434, .external_lex_state = 11}, - [1569] = {.lex_state = 217, .external_lex_state = 24}, - [1570] = {.lex_state = 434, .external_lex_state = 11}, - [1571] = {.lex_state = 434, .external_lex_state = 11}, - [1572] = {.lex_state = 177, .external_lex_state = 21}, - [1573] = {.lex_state = 177, .external_lex_state = 23}, - [1574] = {.lex_state = 199, .external_lex_state = 26}, - [1575] = {.lex_state = 218, .external_lex_state = 24}, - [1576] = {.lex_state = 180, .external_lex_state = 21}, - [1577] = {.lex_state = 180, .external_lex_state = 21}, - [1578] = {.lex_state = 180, .external_lex_state = 21}, - [1579] = {.lex_state = 180, .external_lex_state = 21}, - [1580] = {.lex_state = 180, .external_lex_state = 21}, - [1581] = {.lex_state = 247, .external_lex_state = 27}, - [1582] = {.lex_state = 247, .external_lex_state = 27}, - [1583] = {.lex_state = 218, .external_lex_state = 24}, - [1584] = {.lex_state = 223, .external_lex_state = 17}, - [1585] = {.lex_state = 223, .external_lex_state = 17}, - [1586] = {.lex_state = 220, .external_lex_state = 19}, - [1587] = {.lex_state = 223, .external_lex_state = 17}, - [1588] = {.lex_state = 247, .external_lex_state = 27}, - [1589] = {.lex_state = 247, .external_lex_state = 27}, - [1590] = {.lex_state = 216, .external_lex_state = 19}, - [1591] = {.lex_state = 434, .external_lex_state = 12}, - [1592] = {.lex_state = 199, .external_lex_state = 26}, - [1593] = {.lex_state = 217, .external_lex_state = 24}, - [1594] = {.lex_state = 223, .external_lex_state = 17}, - [1595] = {.lex_state = 223, .external_lex_state = 17}, - [1596] = {.lex_state = 177, .external_lex_state = 23}, - [1597] = {.lex_state = 177, .external_lex_state = 23}, - [1598] = {.lex_state = 218, .external_lex_state = 19}, - [1599] = {.lex_state = 217, .external_lex_state = 24}, - [1600] = {.lex_state = 223, .external_lex_state = 17}, - [1601] = {.lex_state = 218, .external_lex_state = 24}, - [1602] = {.lex_state = 223, .external_lex_state = 17}, - [1603] = {.lex_state = 223, .external_lex_state = 17}, - [1604] = {.lex_state = 223, .external_lex_state = 17}, - [1605] = {.lex_state = 218, .external_lex_state = 24}, - [1606] = {.lex_state = 218, .external_lex_state = 24}, - [1607] = {.lex_state = 218, .external_lex_state = 24}, - [1608] = {.lex_state = 182, .external_lex_state = 28}, - [1609] = {.lex_state = 182, .external_lex_state = 28}, - [1610] = {.lex_state = 218, .external_lex_state = 24}, - [1611] = {.lex_state = 218, .external_lex_state = 24}, - [1612] = {.lex_state = 217, .external_lex_state = 24}, - [1613] = {.lex_state = 199, .external_lex_state = 26}, - [1614] = {.lex_state = 218, .external_lex_state = 24}, - [1615] = {.lex_state = 199, .external_lex_state = 26}, - [1616] = {.lex_state = 218, .external_lex_state = 24}, - [1617] = {.lex_state = 218, .external_lex_state = 24}, - [1618] = {.lex_state = 434, .external_lex_state = 11}, - [1619] = {.lex_state = 217, .external_lex_state = 24}, - [1620] = {.lex_state = 245, .external_lex_state = 29}, - [1621] = {.lex_state = 182, .external_lex_state = 28}, - [1622] = {.lex_state = 245, .external_lex_state = 29}, - [1623] = {.lex_state = 216, .external_lex_state = 19}, - [1624] = {.lex_state = 241, .external_lex_state = 25}, - [1625] = {.lex_state = 218, .external_lex_state = 24}, - [1626] = {.lex_state = 217, .external_lex_state = 24}, - [1627] = {.lex_state = 182, .external_lex_state = 28}, - [1628] = {.lex_state = 216, .external_lex_state = 19}, - [1629] = {.lex_state = 216, .external_lex_state = 19}, - [1630] = {.lex_state = 217, .external_lex_state = 24}, - [1631] = {.lex_state = 241, .external_lex_state = 25}, - [1632] = {.lex_state = 241, .external_lex_state = 25}, - [1633] = {.lex_state = 216, .external_lex_state = 19}, - [1634] = {.lex_state = 218, .external_lex_state = 24}, - [1635] = {.lex_state = 223, .external_lex_state = 17}, - [1636] = {.lex_state = 218, .external_lex_state = 19}, - [1637] = {.lex_state = 218, .external_lex_state = 24}, - [1638] = {.lex_state = 434, .external_lex_state = 12}, - [1639] = {.lex_state = 241, .external_lex_state = 25}, - [1640] = {.lex_state = 216, .external_lex_state = 19}, - [1641] = {.lex_state = 223, .external_lex_state = 17}, - [1642] = {.lex_state = 199, .external_lex_state = 26}, - [1643] = {.lex_state = 199, .external_lex_state = 26}, - [1644] = {.lex_state = 241, .external_lex_state = 25}, - [1645] = {.lex_state = 241, .external_lex_state = 25}, - [1646] = {.lex_state = 241, .external_lex_state = 25}, - [1647] = {.lex_state = 241, .external_lex_state = 25}, - [1648] = {.lex_state = 223, .external_lex_state = 17}, - [1649] = {.lex_state = 218, .external_lex_state = 24}, - [1650] = {.lex_state = 182, .external_lex_state = 28}, - [1651] = {.lex_state = 223, .external_lex_state = 17}, - [1652] = {.lex_state = 182, .external_lex_state = 28}, - [1653] = {.lex_state = 218, .external_lex_state = 24}, - [1654] = {.lex_state = 241, .external_lex_state = 25}, - [1655] = {.lex_state = 223, .external_lex_state = 17}, - [1656] = {.lex_state = 177, .external_lex_state = 23}, - [1657] = {.lex_state = 223, .external_lex_state = 17}, - [1658] = {.lex_state = 218, .external_lex_state = 24}, - [1659] = {.lex_state = 241, .external_lex_state = 25}, - [1660] = {.lex_state = 180, .external_lex_state = 21}, - [1661] = {.lex_state = 218, .external_lex_state = 24}, - [1662] = {.lex_state = 180, .external_lex_state = 21}, - [1663] = {.lex_state = 218, .external_lex_state = 24}, - [1664] = {.lex_state = 220, .external_lex_state = 19}, - [1665] = {.lex_state = 434, .external_lex_state = 11}, - [1666] = {.lex_state = 241, .external_lex_state = 25}, - [1667] = {.lex_state = 241, .external_lex_state = 25}, - [1668] = {.lex_state = 218, .external_lex_state = 24}, - [1669] = {.lex_state = 241, .external_lex_state = 25}, - [1670] = {.lex_state = 241, .external_lex_state = 25}, - [1671] = {.lex_state = 218, .external_lex_state = 24}, - [1672] = {.lex_state = 241, .external_lex_state = 25}, - [1673] = {.lex_state = 199, .external_lex_state = 26}, - [1674] = {.lex_state = 241, .external_lex_state = 25}, - [1675] = {.lex_state = 218, .external_lex_state = 24}, - [1676] = {.lex_state = 241, .external_lex_state = 25}, - [1677] = {.lex_state = 218, .external_lex_state = 24}, - [1678] = {.lex_state = 218, .external_lex_state = 24}, - [1679] = {.lex_state = 241, .external_lex_state = 25}, - [1680] = {.lex_state = 241, .external_lex_state = 25}, - [1681] = {.lex_state = 241, .external_lex_state = 25}, - [1682] = {.lex_state = 218, .external_lex_state = 24}, - [1683] = {.lex_state = 245, .external_lex_state = 29}, - [1684] = {.lex_state = 199, .external_lex_state = 26}, - [1685] = {.lex_state = 218, .external_lex_state = 24}, - [1686] = {.lex_state = 182, .external_lex_state = 28}, - [1687] = {.lex_state = 177, .external_lex_state = 23}, - [1688] = {.lex_state = 218, .external_lex_state = 24}, - [1689] = {.lex_state = 218, .external_lex_state = 24}, - [1690] = {.lex_state = 218, .external_lex_state = 24}, - [1691] = {.lex_state = 218, .external_lex_state = 24}, - [1692] = {.lex_state = 245, .external_lex_state = 29}, - [1693] = {.lex_state = 247, .external_lex_state = 27}, - [1694] = {.lex_state = 245, .external_lex_state = 29}, - [1695] = {.lex_state = 247, .external_lex_state = 27}, - [1696] = {.lex_state = 247, .external_lex_state = 27}, - [1697] = {.lex_state = 247, .external_lex_state = 27}, - [1698] = {.lex_state = 223, .external_lex_state = 17}, - [1699] = {.lex_state = 223, .external_lex_state = 17}, - [1700] = {.lex_state = 182, .external_lex_state = 28}, - [1701] = {.lex_state = 182, .external_lex_state = 28}, - [1702] = {.lex_state = 182, .external_lex_state = 28}, - [1703] = {.lex_state = 245, .external_lex_state = 29}, - [1704] = {.lex_state = 182, .external_lex_state = 28}, - [1705] = {.lex_state = 182, .external_lex_state = 28}, - [1706] = {.lex_state = 218, .external_lex_state = 24}, - [1707] = {.lex_state = 201, .external_lex_state = 2}, - [1708] = {.lex_state = 201, .external_lex_state = 2}, - [1709] = {.lex_state = 199, .external_lex_state = 30}, - [1710] = {.lex_state = 218, .external_lex_state = 24}, - [1711] = {.lex_state = 218, .external_lex_state = 24}, - [1712] = {.lex_state = 245, .external_lex_state = 29}, - [1713] = {.lex_state = 223, .external_lex_state = 17}, - [1714] = {.lex_state = 199, .external_lex_state = 30}, - [1715] = {.lex_state = 218, .external_lex_state = 19}, - [1716] = {.lex_state = 218, .external_lex_state = 19}, - [1717] = {.lex_state = 199, .external_lex_state = 30}, - [1718] = {.lex_state = 218, .external_lex_state = 19}, - [1719] = {.lex_state = 218, .external_lex_state = 19}, - [1720] = {.lex_state = 245, .external_lex_state = 29}, - [1721] = {.lex_state = 245, .external_lex_state = 29}, - [1722] = {.lex_state = 218, .external_lex_state = 19}, - [1723] = {.lex_state = 218, .external_lex_state = 19}, - [1724] = {.lex_state = 218, .external_lex_state = 19}, - [1725] = {.lex_state = 199, .external_lex_state = 30}, - [1726] = {.lex_state = 218, .external_lex_state = 19}, - [1727] = {.lex_state = 245, .external_lex_state = 29}, - [1728] = {.lex_state = 245, .external_lex_state = 29}, - [1729] = {.lex_state = 245, .external_lex_state = 31}, - [1730] = {.lex_state = 218, .external_lex_state = 19}, - [1731] = {.lex_state = 243, .external_lex_state = 14}, - [1732] = {.lex_state = 218, .external_lex_state = 19}, - [1733] = {.lex_state = 245, .external_lex_state = 29}, - [1734] = {.lex_state = 218, .external_lex_state = 19}, - [1735] = {.lex_state = 199, .external_lex_state = 30}, - [1736] = {.lex_state = 218, .external_lex_state = 19}, - [1737] = {.lex_state = 218, .external_lex_state = 19}, - [1738] = {.lex_state = 245, .external_lex_state = 29}, - [1739] = {.lex_state = 218, .external_lex_state = 19}, - [1740] = {.lex_state = 199, .external_lex_state = 30}, - [1741] = {.lex_state = 199, .external_lex_state = 30}, - [1742] = {.lex_state = 199, .external_lex_state = 30}, - [1743] = {.lex_state = 218, .external_lex_state = 19}, - [1744] = {.lex_state = 218, .external_lex_state = 19}, - [1745] = {.lex_state = 242, .external_lex_state = 27}, - [1746] = {.lex_state = 245, .external_lex_state = 29}, - [1747] = {.lex_state = 199, .external_lex_state = 30}, - [1748] = {.lex_state = 245, .external_lex_state = 29}, - [1749] = {.lex_state = 218, .external_lex_state = 19}, - [1750] = {.lex_state = 218, .external_lex_state = 19}, - [1751] = {.lex_state = 218, .external_lex_state = 19}, - [1752] = {.lex_state = 199, .external_lex_state = 30}, - [1753] = {.lex_state = 199, .external_lex_state = 30}, - [1754] = {.lex_state = 199, .external_lex_state = 30}, - [1755] = {.lex_state = 218, .external_lex_state = 19}, - [1756] = {.lex_state = 247, .external_lex_state = 32}, - [1757] = {.lex_state = 247, .external_lex_state = 27}, - [1758] = {.lex_state = 247, .external_lex_state = 32}, - [1759] = {.lex_state = 218, .external_lex_state = 19}, - [1760] = {.lex_state = 218, .external_lex_state = 19}, - [1761] = {.lex_state = 199, .external_lex_state = 30}, - [1762] = {.lex_state = 218, .external_lex_state = 19}, - [1763] = {.lex_state = 245, .external_lex_state = 31}, - [1764] = {.lex_state = 199, .external_lex_state = 30}, - [1765] = {.lex_state = 243, .external_lex_state = 14}, - [1766] = {.lex_state = 247, .external_lex_state = 27}, - [1767] = {.lex_state = 247, .external_lex_state = 27}, - [1768] = {.lex_state = 218, .external_lex_state = 19}, - [1769] = {.lex_state = 199, .external_lex_state = 30}, - [1770] = {.lex_state = 245, .external_lex_state = 31}, - [1771] = {.lex_state = 242, .external_lex_state = 27}, - [1772] = {.lex_state = 242, .external_lex_state = 27}, - [1773] = {.lex_state = 245, .external_lex_state = 31}, - [1774] = {.lex_state = 199, .external_lex_state = 30}, - [1775] = {.lex_state = 218, .external_lex_state = 19}, - [1776] = {.lex_state = 247, .external_lex_state = 27}, - [1777] = {.lex_state = 218, .external_lex_state = 19}, - [1778] = {.lex_state = 245, .external_lex_state = 31}, - [1779] = {.lex_state = 199, .external_lex_state = 30}, - [1780] = {.lex_state = 245, .external_lex_state = 31}, - [1781] = {.lex_state = 218, .external_lex_state = 19}, - [1782] = {.lex_state = 247, .external_lex_state = 27}, - [1783] = {.lex_state = 247, .external_lex_state = 32}, - [1784] = {.lex_state = 245, .external_lex_state = 29}, - [1785] = {.lex_state = 199, .external_lex_state = 30}, - [1786] = {.lex_state = 199, .external_lex_state = 30}, - [1787] = {.lex_state = 199, .external_lex_state = 30}, - [1788] = {.lex_state = 247, .external_lex_state = 32}, - [1789] = {.lex_state = 247, .external_lex_state = 27}, - [1790] = {.lex_state = 247, .external_lex_state = 32}, - [1791] = {.lex_state = 245, .external_lex_state = 29}, - [1792] = {.lex_state = 245, .external_lex_state = 29}, - [1793] = {.lex_state = 180, .external_lex_state = 23}, - [1794] = {.lex_state = 218, .external_lex_state = 19}, - [1795] = {.lex_state = 247, .external_lex_state = 27}, - [1796] = {.lex_state = 223, .external_lex_state = 17}, - [1797] = {.lex_state = 180, .external_lex_state = 23}, - [1798] = {.lex_state = 199, .external_lex_state = 30}, - [1799] = {.lex_state = 247, .external_lex_state = 32}, - [1800] = {.lex_state = 247, .external_lex_state = 27}, - [1801] = {.lex_state = 199, .external_lex_state = 30}, - [1802] = {.lex_state = 218, .external_lex_state = 19}, - [1803] = {.lex_state = 199, .external_lex_state = 30}, - [1804] = {.lex_state = 245, .external_lex_state = 29}, - [1805] = {.lex_state = 245, .external_lex_state = 29}, - [1806] = {.lex_state = 199, .external_lex_state = 30}, - [1807] = {.lex_state = 247, .external_lex_state = 27}, - [1808] = {.lex_state = 199, .external_lex_state = 30}, - [1809] = {.lex_state = 247, .external_lex_state = 27}, - [1810] = {.lex_state = 223, .external_lex_state = 17}, - [1811] = {.lex_state = 199, .external_lex_state = 30}, - [1812] = {.lex_state = 242, .external_lex_state = 27}, - [1813] = {.lex_state = 223, .external_lex_state = 17}, - [1814] = {.lex_state = 199, .external_lex_state = 30}, - [1815] = {.lex_state = 245, .external_lex_state = 29}, - [1816] = {.lex_state = 245, .external_lex_state = 29}, - [1817] = {.lex_state = 199, .external_lex_state = 30}, - [1818] = {.lex_state = 218, .external_lex_state = 19}, - [1819] = {.lex_state = 199, .external_lex_state = 30}, - [1820] = {.lex_state = 218, .external_lex_state = 19}, - [1821] = {.lex_state = 218, .external_lex_state = 19}, - [1822] = {.lex_state = 245, .external_lex_state = 29}, - [1823] = {.lex_state = 218, .external_lex_state = 19}, - [1824] = {.lex_state = 223, .external_lex_state = 22}, - [1825] = {.lex_state = 218, .external_lex_state = 19}, - [1826] = {.lex_state = 243, .external_lex_state = 14}, - [1827] = {.lex_state = 242, .external_lex_state = 27}, - [1828] = {.lex_state = 223, .external_lex_state = 17}, - [1829] = {.lex_state = 218, .external_lex_state = 19}, - [1830] = {.lex_state = 242, .external_lex_state = 27}, - [1831] = {.lex_state = 217, .external_lex_state = 19}, - [1832] = {.lex_state = 245, .external_lex_state = 29}, - [1833] = {.lex_state = 245, .external_lex_state = 29}, - [1834] = {.lex_state = 223, .external_lex_state = 17}, - [1835] = {.lex_state = 218, .external_lex_state = 19}, - [1836] = {.lex_state = 199, .external_lex_state = 30}, - [1837] = {.lex_state = 218, .external_lex_state = 19}, - [1838] = {.lex_state = 218, .external_lex_state = 19}, - [1839] = {.lex_state = 218, .external_lex_state = 19}, - [1840] = {.lex_state = 199, .external_lex_state = 30}, - [1841] = {.lex_state = 245, .external_lex_state = 29}, - [1842] = {.lex_state = 223, .external_lex_state = 17}, - [1843] = {.lex_state = 218, .external_lex_state = 19}, - [1844] = {.lex_state = 247, .external_lex_state = 27}, - [1845] = {.lex_state = 223, .external_lex_state = 17}, - [1846] = {.lex_state = 218, .external_lex_state = 19}, - [1847] = {.lex_state = 199, .external_lex_state = 30}, - [1848] = {.lex_state = 218, .external_lex_state = 19}, - [1849] = {.lex_state = 223, .external_lex_state = 17}, - [1850] = {.lex_state = 218, .external_lex_state = 19}, - [1851] = {.lex_state = 247, .external_lex_state = 27}, - [1852] = {.lex_state = 223, .external_lex_state = 17}, - [1853] = {.lex_state = 223, .external_lex_state = 17}, - [1854] = {.lex_state = 243, .external_lex_state = 14}, - [1855] = {.lex_state = 199, .external_lex_state = 30}, - [1856] = {.lex_state = 223, .external_lex_state = 17}, - [1857] = {.lex_state = 223, .external_lex_state = 17}, - [1858] = {.lex_state = 199, .external_lex_state = 30}, - [1859] = {.lex_state = 199, .external_lex_state = 30}, - [1860] = {.lex_state = 199, .external_lex_state = 30}, - [1861] = {.lex_state = 218, .external_lex_state = 19}, - [1862] = {.lex_state = 218, .external_lex_state = 19}, - [1863] = {.lex_state = 218, .external_lex_state = 19}, - [1864] = {.lex_state = 247, .external_lex_state = 27}, - [1865] = {.lex_state = 247, .external_lex_state = 27}, - [1866] = {.lex_state = 218, .external_lex_state = 19}, - [1867] = {.lex_state = 218, .external_lex_state = 19}, - [1868] = {.lex_state = 199, .external_lex_state = 30}, - [1869] = {.lex_state = 218, .external_lex_state = 19}, - [1870] = {.lex_state = 199, .external_lex_state = 30}, - [1871] = {.lex_state = 218, .external_lex_state = 19}, - [1872] = {.lex_state = 218, .external_lex_state = 19}, - [1873] = {.lex_state = 218, .external_lex_state = 19}, - [1874] = {.lex_state = 218, .external_lex_state = 19}, - [1875] = {.lex_state = 247, .external_lex_state = 27}, - [1876] = {.lex_state = 247, .external_lex_state = 27}, - [1877] = {.lex_state = 223, .external_lex_state = 17}, - [1878] = {.lex_state = 180, .external_lex_state = 23}, - [1879] = {.lex_state = 218, .external_lex_state = 19}, - [1880] = {.lex_state = 180, .external_lex_state = 23}, - [1881] = {.lex_state = 223, .external_lex_state = 17}, - [1882] = {.lex_state = 247, .external_lex_state = 27}, - [1883] = {.lex_state = 220, .external_lex_state = 19}, - [1884] = {.lex_state = 199, .external_lex_state = 30}, - [1885] = {.lex_state = 223, .external_lex_state = 17}, - [1886] = {.lex_state = 218, .external_lex_state = 19}, - [1887] = {.lex_state = 218, .external_lex_state = 19}, - [1888] = {.lex_state = 199, .external_lex_state = 30}, - [1889] = {.lex_state = 199, .external_lex_state = 30}, - [1890] = {.lex_state = 223, .external_lex_state = 17}, - [1891] = {.lex_state = 242, .external_lex_state = 27}, - [1892] = {.lex_state = 247, .external_lex_state = 27}, - [1893] = {.lex_state = 247, .external_lex_state = 27}, - [1894] = {.lex_state = 242, .external_lex_state = 27}, - [1895] = {.lex_state = 199, .external_lex_state = 30}, - [1896] = {.lex_state = 218, .external_lex_state = 19}, - [1897] = {.lex_state = 218, .external_lex_state = 19}, - [1898] = {.lex_state = 199, .external_lex_state = 30}, - [1899] = {.lex_state = 218, .external_lex_state = 19}, - [1900] = {.lex_state = 223, .external_lex_state = 17}, - [1901] = {.lex_state = 247, .external_lex_state = 27}, - [1902] = {.lex_state = 218, .external_lex_state = 19}, - [1903] = {.lex_state = 223, .external_lex_state = 17}, - [1904] = {.lex_state = 218, .external_lex_state = 19}, - [1905] = {.lex_state = 218, .external_lex_state = 19}, - [1906] = {.lex_state = 199, .external_lex_state = 30}, - [1907] = {.lex_state = 223, .external_lex_state = 17}, - [1908] = {.lex_state = 218, .external_lex_state = 19}, - [1909] = {.lex_state = 218, .external_lex_state = 19}, - [1910] = {.lex_state = 217, .external_lex_state = 19}, - [1911] = {.lex_state = 218, .external_lex_state = 19}, - [1912] = {.lex_state = 199, .external_lex_state = 30}, - [1913] = {.lex_state = 199, .external_lex_state = 30}, - [1914] = {.lex_state = 199, .external_lex_state = 30}, - [1915] = {.lex_state = 218, .external_lex_state = 19}, - [1916] = {.lex_state = 218, .external_lex_state = 19}, - [1917] = {.lex_state = 199, .external_lex_state = 30}, - [1918] = {.lex_state = 180, .external_lex_state = 23}, - [1919] = {.lex_state = 199, .external_lex_state = 30}, - [1920] = {.lex_state = 223, .external_lex_state = 17}, - [1921] = {.lex_state = 218, .external_lex_state = 19}, - [1922] = {.lex_state = 199, .external_lex_state = 30}, - [1923] = {.lex_state = 223, .external_lex_state = 22}, - [1924] = {.lex_state = 218, .external_lex_state = 19}, - [1925] = {.lex_state = 218, .external_lex_state = 19}, - [1926] = {.lex_state = 218, .external_lex_state = 24}, - [1927] = {.lex_state = 218, .external_lex_state = 19}, - [1928] = {.lex_state = 245, .external_lex_state = 31}, - [1929] = {.lex_state = 223, .external_lex_state = 17}, - [1930] = {.lex_state = 247, .external_lex_state = 32}, - [1931] = {.lex_state = 242, .external_lex_state = 32}, - [1932] = {.lex_state = 242, .external_lex_state = 32}, - [1933] = {.lex_state = 245, .external_lex_state = 31}, - [1934] = {.lex_state = 245, .external_lex_state = 31}, - [1935] = {.lex_state = 242, .external_lex_state = 32}, - [1936] = {.lex_state = 247, .external_lex_state = 32}, - [1937] = {.lex_state = 247, .external_lex_state = 32}, - [1938] = {.lex_state = 245, .external_lex_state = 31}, - [1939] = {.lex_state = 245, .external_lex_state = 31}, - [1940] = {.lex_state = 247, .external_lex_state = 32}, - [1941] = {.lex_state = 218, .external_lex_state = 19}, - [1942] = {.lex_state = 242, .external_lex_state = 27}, - [1943] = {.lex_state = 245, .external_lex_state = 31}, - [1944] = {.lex_state = 245, .external_lex_state = 31}, - [1945] = {.lex_state = 218, .external_lex_state = 19}, - [1946] = {.lex_state = 245, .external_lex_state = 31}, - [1947] = {.lex_state = 245, .external_lex_state = 31}, - [1948] = {.lex_state = 218, .external_lex_state = 19}, - [1949] = {.lex_state = 242, .external_lex_state = 27}, - [1950] = {.lex_state = 242, .external_lex_state = 27}, - [1951] = {.lex_state = 242, .external_lex_state = 32}, - [1952] = {.lex_state = 242, .external_lex_state = 27}, - [1953] = {.lex_state = 245, .external_lex_state = 31}, - [1954] = {.lex_state = 218, .external_lex_state = 19}, - [1955] = {.lex_state = 242, .external_lex_state = 27}, - [1956] = {.lex_state = 242, .external_lex_state = 27}, - [1957] = {.lex_state = 245, .external_lex_state = 31}, - [1958] = {.lex_state = 242, .external_lex_state = 27}, - [1959] = {.lex_state = 242, .external_lex_state = 27}, - [1960] = {.lex_state = 247, .external_lex_state = 32}, - [1961] = {.lex_state = 217, .external_lex_state = 24}, - [1962] = {.lex_state = 217, .external_lex_state = 24}, - [1963] = {.lex_state = 247, .external_lex_state = 32}, - [1964] = {.lex_state = 247, .external_lex_state = 32}, - [1965] = {.lex_state = 217, .external_lex_state = 24}, - [1966] = {.lex_state = 242, .external_lex_state = 27}, - [1967] = {.lex_state = 223, .external_lex_state = 17}, - [1968] = {.lex_state = 244, .external_lex_state = 15}, - [1969] = {.lex_state = 242, .external_lex_state = 27}, - [1970] = {.lex_state = 243, .external_lex_state = 14}, - [1971] = {.lex_state = 245, .external_lex_state = 31}, - [1972] = {.lex_state = 221, .external_lex_state = 19}, - [1973] = {.lex_state = 223, .external_lex_state = 17}, - [1974] = {.lex_state = 223, .external_lex_state = 17}, - [1975] = {.lex_state = 245, .external_lex_state = 31}, - [1976] = {.lex_state = 246, .external_lex_state = 13}, - [1977] = {.lex_state = 245, .external_lex_state = 31}, - [1978] = {.lex_state = 223, .external_lex_state = 17}, - [1979] = {.lex_state = 242, .external_lex_state = 27}, - [1980] = {.lex_state = 142, .external_lex_state = 33}, - [1981] = {.lex_state = 245, .external_lex_state = 31}, - [1982] = {.lex_state = 223, .external_lex_state = 17}, - [1983] = {.lex_state = 244, .external_lex_state = 15}, - [1984] = {.lex_state = 242, .external_lex_state = 27}, - [1985] = {.lex_state = 218, .external_lex_state = 19}, - [1986] = {.lex_state = 246, .external_lex_state = 13}, - [1987] = {.lex_state = 245, .external_lex_state = 31}, - [1988] = {.lex_state = 242, .external_lex_state = 27}, - [1989] = {.lex_state = 218, .external_lex_state = 19}, - [1990] = {.lex_state = 218, .external_lex_state = 19}, - [1991] = {.lex_state = 243, .external_lex_state = 14}, - [1992] = {.lex_state = 245, .external_lex_state = 31}, - [1993] = {.lex_state = 246, .external_lex_state = 13}, - [1994] = {.lex_state = 242, .external_lex_state = 27}, - [1995] = {.lex_state = 247, .external_lex_state = 32}, - [1996] = {.lex_state = 247, .external_lex_state = 32}, - [1997] = {.lex_state = 64, .external_lex_state = 34}, - [1998] = {.lex_state = 245, .external_lex_state = 31}, - [1999] = {.lex_state = 245, .external_lex_state = 31}, - [2000] = {.lex_state = 242, .external_lex_state = 27}, - [2001] = {.lex_state = 64, .external_lex_state = 34}, - [2002] = {.lex_state = 245, .external_lex_state = 31}, - [2003] = {.lex_state = 223, .external_lex_state = 17}, - [2004] = {.lex_state = 223, .external_lex_state = 17}, - [2005] = {.lex_state = 247, .external_lex_state = 32}, - [2006] = {.lex_state = 242, .external_lex_state = 27}, - [2007] = {.lex_state = 247, .external_lex_state = 32}, - [2008] = {.lex_state = 247, .external_lex_state = 32}, - [2009] = {.lex_state = 217, .external_lex_state = 19}, - [2010] = {.lex_state = 247, .external_lex_state = 32}, - [2011] = {.lex_state = 247, .external_lex_state = 32}, - [2012] = {.lex_state = 242, .external_lex_state = 27}, - [2013] = {.lex_state = 247, .external_lex_state = 32}, - [2014] = {.lex_state = 243, .external_lex_state = 14}, - [2015] = {.lex_state = 242, .external_lex_state = 27}, - [2016] = {.lex_state = 247, .external_lex_state = 32}, - [2017] = {.lex_state = 242, .external_lex_state = 27}, - [2018] = {.lex_state = 247, .external_lex_state = 32}, - [2019] = {.lex_state = 223, .external_lex_state = 22}, - [2020] = {.lex_state = 242, .external_lex_state = 32}, - [2021] = {.lex_state = 242, .external_lex_state = 32}, - [2022] = {.lex_state = 247, .external_lex_state = 32}, - [2023] = {.lex_state = 217, .external_lex_state = 24}, - [2024] = {.lex_state = 247, .external_lex_state = 32}, - [2025] = {.lex_state = 252, .external_lex_state = 35}, - [2026] = {.lex_state = 223, .external_lex_state = 17}, - [2027] = {.lex_state = 252, .external_lex_state = 35}, - [2028] = {.lex_state = 223, .external_lex_state = 17}, - [2029] = {.lex_state = 243, .external_lex_state = 14}, - [2030] = {.lex_state = 252, .external_lex_state = 35}, - [2031] = {.lex_state = 247, .external_lex_state = 32}, - [2032] = {.lex_state = 242, .external_lex_state = 27}, - [2033] = {.lex_state = 252, .external_lex_state = 35}, - [2034] = {.lex_state = 223, .external_lex_state = 17}, - [2035] = {.lex_state = 246, .external_lex_state = 13}, - [2036] = {.lex_state = 217, .external_lex_state = 19}, - [2037] = {.lex_state = 218, .external_lex_state = 19}, - [2038] = {.lex_state = 218, .external_lex_state = 19}, - [2039] = {.lex_state = 242, .external_lex_state = 32}, - [2040] = {.lex_state = 217, .external_lex_state = 19}, - [2041] = {.lex_state = 218, .external_lex_state = 19}, - [2042] = {.lex_state = 217, .external_lex_state = 19}, - [2043] = {.lex_state = 242, .external_lex_state = 32}, - [2044] = {.lex_state = 252, .external_lex_state = 10}, - [2045] = {.lex_state = 218, .external_lex_state = 19}, - [2046] = {.lex_state = 252, .external_lex_state = 10}, - [2047] = {.lex_state = 242, .external_lex_state = 32}, - [2048] = {.lex_state = 242, .external_lex_state = 32}, - [2049] = {.lex_state = 242, .external_lex_state = 32}, - [2050] = {.lex_state = 217, .external_lex_state = 19}, - [2051] = {.lex_state = 217, .external_lex_state = 19}, - [2052] = {.lex_state = 217, .external_lex_state = 19}, - [2053] = {.lex_state = 240, .external_lex_state = 13}, - [2054] = {.lex_state = 218, .external_lex_state = 19}, - [2055] = {.lex_state = 252, .external_lex_state = 10}, - [2056] = {.lex_state = 217, .external_lex_state = 19}, - [2057] = {.lex_state = 218, .external_lex_state = 19}, - [2058] = {.lex_state = 217, .external_lex_state = 19}, - [2059] = {.lex_state = 217, .external_lex_state = 19}, - [2060] = {.lex_state = 218, .external_lex_state = 19}, - [2061] = {.lex_state = 217, .external_lex_state = 19}, - [2062] = {.lex_state = 218, .external_lex_state = 19}, - [2063] = {.lex_state = 217, .external_lex_state = 19}, - [2064] = {.lex_state = 217, .external_lex_state = 19}, - [2065] = {.lex_state = 223, .external_lex_state = 22}, - [2066] = {.lex_state = 217, .external_lex_state = 19}, - [2067] = {.lex_state = 218, .external_lex_state = 19}, - [2068] = {.lex_state = 252, .external_lex_state = 10}, - [2069] = {.lex_state = 244, .external_lex_state = 18}, - [2070] = {.lex_state = 242, .external_lex_state = 32}, - [2071] = {.lex_state = 223, .external_lex_state = 22}, - [2072] = {.lex_state = 217, .external_lex_state = 19}, - [2073] = {.lex_state = 223, .external_lex_state = 22}, - [2074] = {.lex_state = 223, .external_lex_state = 22}, - [2075] = {.lex_state = 217, .external_lex_state = 19}, - [2076] = {.lex_state = 246, .external_lex_state = 13}, - [2077] = {.lex_state = 242, .external_lex_state = 32}, - [2078] = {.lex_state = 252, .external_lex_state = 10}, - [2079] = {.lex_state = 218, .external_lex_state = 19}, - [2080] = {.lex_state = 217, .external_lex_state = 19}, - [2081] = {.lex_state = 246, .external_lex_state = 16}, - [2082] = {.lex_state = 242, .external_lex_state = 32}, - [2083] = {.lex_state = 242, .external_lex_state = 32}, - [2084] = {.lex_state = 242, .external_lex_state = 32}, - [2085] = {.lex_state = 217, .external_lex_state = 19}, - [2086] = {.lex_state = 217, .external_lex_state = 19}, - [2087] = {.lex_state = 217, .external_lex_state = 19}, - [2088] = {.lex_state = 217, .external_lex_state = 19}, - [2089] = {.lex_state = 64, .external_lex_state = 36}, - [2090] = {.lex_state = 64, .external_lex_state = 36}, - [2091] = {.lex_state = 217, .external_lex_state = 19}, - [2092] = {.lex_state = 218, .external_lex_state = 19}, - [2093] = {.lex_state = 223, .external_lex_state = 22}, - [2094] = {.lex_state = 244, .external_lex_state = 18}, - [2095] = {.lex_state = 223, .external_lex_state = 22}, - [2096] = {.lex_state = 223, .external_lex_state = 22}, - [2097] = {.lex_state = 223, .external_lex_state = 22}, - [2098] = {.lex_state = 217, .external_lex_state = 19}, - [2099] = {.lex_state = 217, .external_lex_state = 19}, - [2100] = {.lex_state = 217, .external_lex_state = 19}, - [2101] = {.lex_state = 242, .external_lex_state = 32}, - [2102] = {.lex_state = 218, .external_lex_state = 19}, - [2103] = {.lex_state = 242, .external_lex_state = 32}, - [2104] = {.lex_state = 217, .external_lex_state = 19}, - [2105] = {.lex_state = 244, .external_lex_state = 15}, - [2106] = {.lex_state = 218, .external_lex_state = 19}, - [2107] = {.lex_state = 218, .external_lex_state = 19}, - [2108] = {.lex_state = 242, .external_lex_state = 32}, - [2109] = {.lex_state = 145, .external_lex_state = 34}, - [2110] = {.lex_state = 217, .external_lex_state = 19}, - [2111] = {.lex_state = 223, .external_lex_state = 22}, - [2112] = {.lex_state = 218, .external_lex_state = 19}, - [2113] = {.lex_state = 217, .external_lex_state = 19}, - [2114] = {.lex_state = 246, .external_lex_state = 13}, - [2115] = {.lex_state = 252, .external_lex_state = 10}, - [2116] = {.lex_state = 217, .external_lex_state = 19}, - [2117] = {.lex_state = 217, .external_lex_state = 19}, - [2118] = {.lex_state = 246, .external_lex_state = 16}, - [2119] = {.lex_state = 217, .external_lex_state = 19}, - [2120] = {.lex_state = 218, .external_lex_state = 19}, - [2121] = {.lex_state = 145, .external_lex_state = 34}, - [2122] = {.lex_state = 217, .external_lex_state = 19}, - [2123] = {.lex_state = 244, .external_lex_state = 15}, - [2124] = {.lex_state = 246, .external_lex_state = 13}, - [2125] = {.lex_state = 217, .external_lex_state = 19}, - [2126] = {.lex_state = 242, .external_lex_state = 32}, - [2127] = {.lex_state = 242, .external_lex_state = 32}, - [2128] = {.lex_state = 218, .external_lex_state = 19}, - [2129] = {.lex_state = 217, .external_lex_state = 19}, - [2130] = {.lex_state = 217, .external_lex_state = 19}, - [2131] = {.lex_state = 217, .external_lex_state = 19}, - [2132] = {.lex_state = 217, .external_lex_state = 19}, - [2133] = {.lex_state = 217, .external_lex_state = 19}, - [2134] = {.lex_state = 240, .external_lex_state = 13}, - [2135] = {.lex_state = 218, .external_lex_state = 19}, - [2136] = {.lex_state = 242, .external_lex_state = 32}, - [2137] = {.lex_state = 217, .external_lex_state = 19}, - [2138] = {.lex_state = 242, .external_lex_state = 32}, - [2139] = {.lex_state = 218, .external_lex_state = 19}, - [2140] = {.lex_state = 223, .external_lex_state = 22}, - [2141] = {.lex_state = 242, .external_lex_state = 32}, - [2142] = {.lex_state = 240, .external_lex_state = 13}, - [2143] = {.lex_state = 223, .external_lex_state = 22}, - [2144] = {.lex_state = 217, .external_lex_state = 19}, - [2145] = {.lex_state = 217, .external_lex_state = 19}, - [2146] = {.lex_state = 242, .external_lex_state = 32}, - [2147] = {.lex_state = 242, .external_lex_state = 32}, - [2148] = {.lex_state = 250, .external_lex_state = 37}, - [2149] = {.lex_state = 218, .external_lex_state = 19}, - [2150] = {.lex_state = 240, .external_lex_state = 13}, - [2151] = {.lex_state = 149, .external_lex_state = 34}, - [2152] = {.lex_state = 250, .external_lex_state = 37}, - [2153] = {.lex_state = 250, .external_lex_state = 37}, - [2154] = {.lex_state = 240, .external_lex_state = 13}, - [2155] = {.lex_state = 254, .external_lex_state = 35}, - [2156] = {.lex_state = 240, .external_lex_state = 16}, - [2157] = {.lex_state = 250, .external_lex_state = 37}, - [2158] = {.lex_state = 250, .external_lex_state = 37}, - [2159] = {.lex_state = 430, .external_lex_state = 34}, - [2160] = {.lex_state = 254, .external_lex_state = 35}, - [2161] = {.lex_state = 157, .external_lex_state = 34}, - [2162] = {.lex_state = 145, .external_lex_state = 36}, - [2163] = {.lex_state = 218, .external_lex_state = 19}, - [2164] = {.lex_state = 430, .external_lex_state = 34}, - [2165] = {.lex_state = 250, .external_lex_state = 37}, - [2166] = {.lex_state = 149, .external_lex_state = 34}, - [2167] = {.lex_state = 145, .external_lex_state = 36}, - [2168] = {.lex_state = 250, .external_lex_state = 37}, - [2169] = {.lex_state = 240, .external_lex_state = 13}, - [2170] = {.lex_state = 240, .external_lex_state = 13}, - [2171] = {.lex_state = 250, .external_lex_state = 37}, - [2172] = {.lex_state = 246, .external_lex_state = 16}, - [2173] = {.lex_state = 254, .external_lex_state = 35}, - [2174] = {.lex_state = 250, .external_lex_state = 37}, - [2175] = {.lex_state = 240, .external_lex_state = 13}, - [2176] = {.lex_state = 244, .external_lex_state = 18}, - [2177] = {.lex_state = 240, .external_lex_state = 13}, - [2178] = {.lex_state = 240, .external_lex_state = 16}, - [2179] = {.lex_state = 254, .external_lex_state = 35}, - [2180] = {.lex_state = 254, .external_lex_state = 35}, - [2181] = {.lex_state = 218, .external_lex_state = 19}, - [2182] = {.lex_state = 250, .external_lex_state = 37}, - [2183] = {.lex_state = 250, .external_lex_state = 37}, - [2184] = {.lex_state = 250, .external_lex_state = 37}, - [2185] = {.lex_state = 254, .external_lex_state = 35}, - [2186] = {.lex_state = 157, .external_lex_state = 34}, - [2187] = {.lex_state = 218, .external_lex_state = 19}, - [2188] = {.lex_state = 254, .external_lex_state = 35}, - [2189] = {.lex_state = 254, .external_lex_state = 35}, - [2190] = {.lex_state = 240, .external_lex_state = 37}, - [2191] = {.lex_state = 240, .external_lex_state = 37}, - [2192] = {.lex_state = 183, .external_lex_state = 38}, - [2193] = {.lex_state = 240, .external_lex_state = 37}, - [2194] = {.lex_state = 254, .external_lex_state = 35}, - [2195] = {.lex_state = 240, .external_lex_state = 37}, - [2196] = {.lex_state = 183, .external_lex_state = 38}, - [2197] = {.lex_state = 254, .external_lex_state = 35}, - [2198] = {.lex_state = 430, .external_lex_state = 34}, - [2199] = {.lex_state = 430, .external_lex_state = 34}, - [2200] = {.lex_state = 254, .external_lex_state = 35}, - [2201] = {.lex_state = 72, .external_lex_state = 39}, - [2202] = {.lex_state = 240, .external_lex_state = 37}, - [2203] = {.lex_state = 254, .external_lex_state = 35}, - [2204] = {.lex_state = 240, .external_lex_state = 37}, - [2205] = {.lex_state = 254, .external_lex_state = 35}, - [2206] = {.lex_state = 254, .external_lex_state = 35}, - [2207] = {.lex_state = 240, .external_lex_state = 37}, - [2208] = {.lex_state = 240, .external_lex_state = 37}, - [2209] = {.lex_state = 254, .external_lex_state = 35}, - [2210] = {.lex_state = 240, .external_lex_state = 37}, - [2211] = {.lex_state = 253, .external_lex_state = 20}, - [2212] = {.lex_state = 430, .external_lex_state = 36}, - [2213] = {.lex_state = 240, .external_lex_state = 16}, - [2214] = {.lex_state = 240, .external_lex_state = 37}, - [2215] = {.lex_state = 240, .external_lex_state = 37}, - [2216] = {.lex_state = 430, .external_lex_state = 36}, - [2217] = {.lex_state = 254, .external_lex_state = 35}, - [2218] = {.lex_state = 157, .external_lex_state = 36}, - [2219] = {.lex_state = 157, .external_lex_state = 36}, - [2220] = {.lex_state = 240, .external_lex_state = 37}, - [2221] = {.lex_state = 149, .external_lex_state = 36}, - [2222] = {.lex_state = 183, .external_lex_state = 38}, - [2223] = {.lex_state = 240, .external_lex_state = 37}, - [2224] = {.lex_state = 254, .external_lex_state = 35}, - [2225] = {.lex_state = 254, .external_lex_state = 35}, - [2226] = {.lex_state = 149, .external_lex_state = 36}, - [2227] = {.lex_state = 240, .external_lex_state = 37}, - [2228] = {.lex_state = 254, .external_lex_state = 35}, - [2229] = {.lex_state = 254, .external_lex_state = 35}, - [2230] = {.lex_state = 240, .external_lex_state = 37}, - [2231] = {.lex_state = 254, .external_lex_state = 35}, - [2232] = {.lex_state = 240, .external_lex_state = 37}, - [2233] = {.lex_state = 183, .external_lex_state = 38}, - [2234] = {.lex_state = 254, .external_lex_state = 35}, - [2235] = {.lex_state = 254, .external_lex_state = 35}, - [2236] = {.lex_state = 240, .external_lex_state = 37}, - [2237] = {.lex_state = 240, .external_lex_state = 37}, - [2238] = {.lex_state = 254, .external_lex_state = 35}, - [2239] = {.lex_state = 254, .external_lex_state = 35}, - [2240] = {.lex_state = 254, .external_lex_state = 35}, - [2241] = {.lex_state = 72, .external_lex_state = 39}, - [2242] = {.lex_state = 248, .external_lex_state = 10}, - [2243] = {.lex_state = 255, .external_lex_state = 40}, - [2244] = {.lex_state = 72, .external_lex_state = 39}, - [2245] = {.lex_state = 72, .external_lex_state = 39}, - [2246] = {.lex_state = 72, .external_lex_state = 39}, - [2247] = {.lex_state = 72, .external_lex_state = 39}, - [2248] = {.lex_state = 430, .external_lex_state = 36}, - [2249] = {.lex_state = 72, .external_lex_state = 39}, - [2250] = {.lex_state = 430, .external_lex_state = 36}, - [2251] = {.lex_state = 255, .external_lex_state = 40}, - [2252] = {.lex_state = 255, .external_lex_state = 40}, - [2253] = {.lex_state = 255, .external_lex_state = 40}, - [2254] = {.lex_state = 72, .external_lex_state = 39}, - [2255] = {.lex_state = 72, .external_lex_state = 39}, - [2256] = {.lex_state = 72, .external_lex_state = 39}, - [2257] = {.lex_state = 72, .external_lex_state = 39}, - [2258] = {.lex_state = 72, .external_lex_state = 39}, - [2259] = {.lex_state = 72, .external_lex_state = 39}, - [2260] = {.lex_state = 72, .external_lex_state = 39}, - [2261] = {.lex_state = 255, .external_lex_state = 40}, - [2262] = {.lex_state = 253, .external_lex_state = 10}, - [2263] = {.lex_state = 255, .external_lex_state = 40}, - [2264] = {.lex_state = 255, .external_lex_state = 40}, - [2265] = {.lex_state = 248, .external_lex_state = 10}, - [2266] = {.lex_state = 255, .external_lex_state = 40}, - [2267] = {.lex_state = 255, .external_lex_state = 40}, - [2268] = {.lex_state = 248, .external_lex_state = 10}, - [2269] = {.lex_state = 72, .external_lex_state = 39}, - [2270] = {.lex_state = 72, .external_lex_state = 39}, - [2271] = {.lex_state = 255, .external_lex_state = 40}, - [2272] = {.lex_state = 255, .external_lex_state = 40}, - [2273] = {.lex_state = 255, .external_lex_state = 40}, - [2274] = {.lex_state = 72, .external_lex_state = 39}, - [2275] = {.lex_state = 72, .external_lex_state = 39}, - [2276] = {.lex_state = 240, .external_lex_state = 37}, - [2277] = {.lex_state = 248, .external_lex_state = 10}, - [2278] = {.lex_state = 72, .external_lex_state = 39}, - [2279] = {.lex_state = 255, .external_lex_state = 40}, - [2280] = {.lex_state = 173, .external_lex_state = 38}, - [2281] = {.lex_state = 173, .external_lex_state = 38}, - [2282] = {.lex_state = 255, .external_lex_state = 40}, - [2283] = {.lex_state = 255, .external_lex_state = 40}, - [2284] = {.lex_state = 255, .external_lex_state = 40}, - [2285] = {.lex_state = 255, .external_lex_state = 40}, - [2286] = {.lex_state = 255, .external_lex_state = 40}, - [2287] = {.lex_state = 255, .external_lex_state = 40}, - [2288] = {.lex_state = 255, .external_lex_state = 40}, - [2289] = {.lex_state = 248, .external_lex_state = 10}, - [2290] = {.lex_state = 255, .external_lex_state = 40}, - [2291] = {.lex_state = 253, .external_lex_state = 10}, - [2292] = {.lex_state = 72, .external_lex_state = 39}, - [2293] = {.lex_state = 255, .external_lex_state = 40}, - [2294] = {.lex_state = 255, .external_lex_state = 40}, - [2295] = {.lex_state = 238, .external_lex_state = 2}, - [2296] = {.lex_state = 224, .external_lex_state = 19}, - [2297] = {.lex_state = 253, .external_lex_state = 10}, - [2298] = {.lex_state = 253, .external_lex_state = 10}, - [2299] = {.lex_state = 253, .external_lex_state = 10}, - [2300] = {.lex_state = 225, .external_lex_state = 19}, - [2301] = {.lex_state = 224, .external_lex_state = 19}, - [2302] = {.lex_state = 240, .external_lex_state = 30}, - [2303] = {.lex_state = 225, .external_lex_state = 19}, - [2304] = {.lex_state = 225, .external_lex_state = 19}, - [2305] = {.lex_state = 225, .external_lex_state = 19}, - [2306] = {.lex_state = 240, .external_lex_state = 30}, - [2307] = {.lex_state = 240, .external_lex_state = 30}, - [2308] = {.lex_state = 240, .external_lex_state = 30}, - [2309] = {.lex_state = 205, .external_lex_state = 10}, - [2310] = {.lex_state = 166, .external_lex_state = 38}, - [2311] = {.lex_state = 224, .external_lex_state = 19}, - [2312] = {.lex_state = 240, .external_lex_state = 30}, - [2313] = {.lex_state = 240, .external_lex_state = 30}, - [2314] = {.lex_state = 205, .external_lex_state = 10}, - [2315] = {.lex_state = 225, .external_lex_state = 19}, - [2316] = {.lex_state = 224, .external_lex_state = 19}, - [2317] = {.lex_state = 240, .external_lex_state = 30}, - [2318] = {.lex_state = 160, .external_lex_state = 34}, - [2319] = {.lex_state = 224, .external_lex_state = 19}, - [2320] = {.lex_state = 224, .external_lex_state = 19}, - [2321] = {.lex_state = 240, .external_lex_state = 30}, - [2322] = {.lex_state = 225, .external_lex_state = 19}, - [2323] = {.lex_state = 240, .external_lex_state = 30}, - [2324] = {.lex_state = 240, .external_lex_state = 30}, - [2325] = {.lex_state = 240, .external_lex_state = 30}, - [2326] = {.lex_state = 160, .external_lex_state = 34}, - [2327] = {.lex_state = 240, .external_lex_state = 30}, - [2328] = {.lex_state = 240, .external_lex_state = 30}, - [2329] = {.lex_state = 240, .external_lex_state = 30}, - [2330] = {.lex_state = 240, .external_lex_state = 30}, - [2331] = {.lex_state = 225, .external_lex_state = 19}, - [2332] = {.lex_state = 224, .external_lex_state = 19}, - [2333] = {.lex_state = 225, .external_lex_state = 19}, - [2334] = {.lex_state = 240, .external_lex_state = 30}, - [2335] = {.lex_state = 240, .external_lex_state = 30}, - [2336] = {.lex_state = 239, .external_lex_state = 41}, - [2337] = {.lex_state = 225, .external_lex_state = 19}, - [2338] = {.lex_state = 225, .external_lex_state = 19}, - [2339] = {.lex_state = 224, .external_lex_state = 19}, - [2340] = {.lex_state = 225, .external_lex_state = 19}, - [2341] = {.lex_state = 240, .external_lex_state = 30}, - [2342] = {.lex_state = 224, .external_lex_state = 19}, - [2343] = {.lex_state = 224, .external_lex_state = 19}, - [2344] = {.lex_state = 224, .external_lex_state = 19}, - [2345] = {.lex_state = 239, .external_lex_state = 41}, - [2346] = {.lex_state = 224, .external_lex_state = 19}, - [2347] = {.lex_state = 240, .external_lex_state = 30}, - [2348] = {.lex_state = 240, .external_lex_state = 30}, - [2349] = {.lex_state = 240, .external_lex_state = 30}, - [2350] = {.lex_state = 240, .external_lex_state = 30}, - [2351] = {.lex_state = 225, .external_lex_state = 19}, - [2352] = {.lex_state = 224, .external_lex_state = 19}, - [2353] = {.lex_state = 224, .external_lex_state = 19}, - [2354] = {.lex_state = 224, .external_lex_state = 19}, - [2355] = {.lex_state = 225, .external_lex_state = 19}, - [2356] = {.lex_state = 240, .external_lex_state = 30}, - [2357] = {.lex_state = 240, .external_lex_state = 30}, - [2358] = {.lex_state = 224, .external_lex_state = 19}, - [2359] = {.lex_state = 224, .external_lex_state = 19}, - [2360] = {.lex_state = 225, .external_lex_state = 19}, - [2361] = {.lex_state = 225, .external_lex_state = 19}, - [2362] = {.lex_state = 225, .external_lex_state = 19}, - [2363] = {.lex_state = 239, .external_lex_state = 41}, - [2364] = {.lex_state = 240, .external_lex_state = 30}, - [2365] = {.lex_state = 240, .external_lex_state = 30}, - [2366] = {.lex_state = 225, .external_lex_state = 19}, - [2367] = {.lex_state = 225, .external_lex_state = 19}, - [2368] = {.lex_state = 239, .external_lex_state = 41}, - [2369] = {.lex_state = 225, .external_lex_state = 19}, - [2370] = {.lex_state = 240, .external_lex_state = 30}, - [2371] = {.lex_state = 224, .external_lex_state = 19}, - [2372] = {.lex_state = 240, .external_lex_state = 30}, - [2373] = {.lex_state = 224, .external_lex_state = 19}, - [2374] = {.lex_state = 240, .external_lex_state = 30}, - [2375] = {.lex_state = 240, .external_lex_state = 30}, - [2376] = {.lex_state = 239, .external_lex_state = 41}, - [2377] = {.lex_state = 239, .external_lex_state = 41}, - [2378] = {.lex_state = 166, .external_lex_state = 38}, - [2379] = {.lex_state = 240, .external_lex_state = 30}, - [2380] = {.lex_state = 166, .external_lex_state = 38}, - [2381] = {.lex_state = 224, .external_lex_state = 19}, - [2382] = {.lex_state = 239, .external_lex_state = 41}, - [2383] = {.lex_state = 240, .external_lex_state = 30}, - [2384] = {.lex_state = 239, .external_lex_state = 41}, - [2385] = {.lex_state = 225, .external_lex_state = 19}, - [2386] = {.lex_state = 240, .external_lex_state = 30}, - [2387] = {.lex_state = 226, .external_lex_state = 42}, - [2388] = {.lex_state = 175, .external_lex_state = 38}, - [2389] = {.lex_state = 239, .external_lex_state = 41}, - [2390] = {.lex_state = 175, .external_lex_state = 38}, - [2391] = {.lex_state = 240, .external_lex_state = 43}, - [2392] = {.lex_state = 240, .external_lex_state = 43}, - [2393] = {.lex_state = 240, .external_lex_state = 30}, - [2394] = {.lex_state = 240, .external_lex_state = 30}, - [2395] = {.lex_state = 239, .external_lex_state = 41}, - [2396] = {.lex_state = 240, .external_lex_state = 30}, - [2397] = {.lex_state = 240, .external_lex_state = 30}, - [2398] = {.lex_state = 240, .external_lex_state = 37}, - [2399] = {.lex_state = 239, .external_lex_state = 41}, - [2400] = {.lex_state = 240, .external_lex_state = 30}, - [2401] = {.lex_state = 226, .external_lex_state = 42}, - [2402] = {.lex_state = 240, .external_lex_state = 43}, - [2403] = {.lex_state = 240, .external_lex_state = 30}, - [2404] = {.lex_state = 240, .external_lex_state = 30}, - [2405] = {.lex_state = 240, .external_lex_state = 30}, - [2406] = {.lex_state = 239, .external_lex_state = 41}, - [2407] = {.lex_state = 240, .external_lex_state = 30}, - [2408] = {.lex_state = 240, .external_lex_state = 43}, - [2409] = {.lex_state = 239, .external_lex_state = 41}, - [2410] = {.lex_state = 240, .external_lex_state = 37}, - [2411] = {.lex_state = 240, .external_lex_state = 30}, - [2412] = {.lex_state = 239, .external_lex_state = 41}, - [2413] = {.lex_state = 239, .external_lex_state = 41}, - [2414] = {.lex_state = 239, .external_lex_state = 41}, - [2415] = {.lex_state = 240, .external_lex_state = 30}, - [2416] = {.lex_state = 240, .external_lex_state = 30}, - [2417] = {.lex_state = 240, .external_lex_state = 30}, - [2418] = {.lex_state = 240, .external_lex_state = 30}, - [2419] = {.lex_state = 240, .external_lex_state = 30}, - [2420] = {.lex_state = 239, .external_lex_state = 41}, - [2421] = {.lex_state = 240, .external_lex_state = 30}, - [2422] = {.lex_state = 240, .external_lex_state = 30}, - [2423] = {.lex_state = 240, .external_lex_state = 30}, - [2424] = {.lex_state = 240, .external_lex_state = 30}, - [2425] = {.lex_state = 239, .external_lex_state = 41}, - [2426] = {.lex_state = 240, .external_lex_state = 37}, - [2427] = {.lex_state = 240, .external_lex_state = 30}, - [2428] = {.lex_state = 239, .external_lex_state = 41}, - [2429] = {.lex_state = 240, .external_lex_state = 43}, - [2430] = {.lex_state = 240, .external_lex_state = 30}, - [2431] = {.lex_state = 240, .external_lex_state = 30}, - [2432] = {.lex_state = 240, .external_lex_state = 30}, - [2433] = {.lex_state = 240, .external_lex_state = 30}, - [2434] = {.lex_state = 240, .external_lex_state = 30}, - [2435] = {.lex_state = 240, .external_lex_state = 30}, - [2436] = {.lex_state = 240, .external_lex_state = 30}, - [2437] = {.lex_state = 240, .external_lex_state = 30}, - [2438] = {.lex_state = 239, .external_lex_state = 41}, - [2439] = {.lex_state = 240, .external_lex_state = 43}, - [2440] = {.lex_state = 239, .external_lex_state = 41}, - [2441] = {.lex_state = 240, .external_lex_state = 30}, - [2442] = {.lex_state = 240, .external_lex_state = 30}, - [2443] = {.lex_state = 239, .external_lex_state = 41}, - [2444] = {.lex_state = 239, .external_lex_state = 41}, - [2445] = {.lex_state = 206, .external_lex_state = 30}, - [2446] = {.lex_state = 239, .external_lex_state = 41}, - [2447] = {.lex_state = 240, .external_lex_state = 43}, - [2448] = {.lex_state = 239, .external_lex_state = 41}, - [2449] = {.lex_state = 240, .external_lex_state = 30}, - [2450] = {.lex_state = 206, .external_lex_state = 30}, - [2451] = {.lex_state = 240, .external_lex_state = 30}, - [2452] = {.lex_state = 240, .external_lex_state = 30}, - [2453] = {.lex_state = 240, .external_lex_state = 30}, - [2454] = {.lex_state = 239, .external_lex_state = 41}, - [2455] = {.lex_state = 239, .external_lex_state = 41}, - [2456] = {.lex_state = 160, .external_lex_state = 36}, - [2457] = {.lex_state = 160, .external_lex_state = 36}, - [2458] = {.lex_state = 227, .external_lex_state = 44}, - [2459] = {.lex_state = 239, .external_lex_state = 41}, - [2460] = {.lex_state = 227, .external_lex_state = 44}, - [2461] = {.lex_state = 240, .external_lex_state = 30}, - [2462] = {.lex_state = 248, .external_lex_state = 10}, - [2463] = {.lex_state = 240, .external_lex_state = 30}, - [2464] = {.lex_state = 248, .external_lex_state = 10}, - [2465] = {.lex_state = 240, .external_lex_state = 30}, - [2466] = {.lex_state = 240, .external_lex_state = 30}, - [2467] = {.lex_state = 240, .external_lex_state = 30}, - [2468] = {.lex_state = 240, .external_lex_state = 30}, - [2469] = {.lex_state = 240, .external_lex_state = 30}, - [2470] = {.lex_state = 240, .external_lex_state = 30}, - [2471] = {.lex_state = 240, .external_lex_state = 30}, - [2472] = {.lex_state = 240, .external_lex_state = 30}, - [2473] = {.lex_state = 73, .external_lex_state = 45}, - [2474] = {.lex_state = 240, .external_lex_state = 30}, - [2475] = {.lex_state = 240, .external_lex_state = 30}, - [2476] = {.lex_state = 240, .external_lex_state = 30}, - [2477] = {.lex_state = 240, .external_lex_state = 30}, - [2478] = {.lex_state = 256, .external_lex_state = 46}, - [2479] = {.lex_state = 256, .external_lex_state = 46}, - [2480] = {.lex_state = 227, .external_lex_state = 47}, - [2481] = {.lex_state = 227, .external_lex_state = 47}, - [2482] = {.lex_state = 240, .external_lex_state = 30}, - [2483] = {.lex_state = 238, .external_lex_state = 2}, - [2484] = {.lex_state = 240, .external_lex_state = 30}, - [2485] = {.lex_state = 240, .external_lex_state = 30}, - [2486] = {.lex_state = 240, .external_lex_state = 30}, - [2487] = {.lex_state = 240, .external_lex_state = 30}, - [2488] = {.lex_state = 73, .external_lex_state = 45}, - [2489] = {.lex_state = 240, .external_lex_state = 30}, - [2490] = {.lex_state = 240, .external_lex_state = 30}, - [2491] = {.lex_state = 240, .external_lex_state = 30}, - [2492] = {.lex_state = 256, .external_lex_state = 46}, - [2493] = {.lex_state = 256, .external_lex_state = 46}, - [2494] = {.lex_state = 240, .external_lex_state = 30}, - [2495] = {.lex_state = 238, .external_lex_state = 2}, - [2496] = {.lex_state = 240, .external_lex_state = 30}, - [2497] = {.lex_state = 256, .external_lex_state = 46}, - [2498] = {.lex_state = 240, .external_lex_state = 30}, - [2499] = {.lex_state = 256, .external_lex_state = 46}, - [2500] = {.lex_state = 256, .external_lex_state = 46}, - [2501] = {.lex_state = 256, .external_lex_state = 46}, - [2502] = {.lex_state = 238, .external_lex_state = 2}, - [2503] = {.lex_state = 240, .external_lex_state = 30}, - [2504] = {.lex_state = 73, .external_lex_state = 45}, - [2505] = {.lex_state = 240, .external_lex_state = 30}, - [2506] = {.lex_state = 255, .external_lex_state = 30}, - [2507] = {.lex_state = 255, .external_lex_state = 30}, - [2508] = {.lex_state = 255, .external_lex_state = 30}, - [2509] = {.lex_state = 255, .external_lex_state = 30}, - [2510] = {.lex_state = 238, .external_lex_state = 2}, - [2511] = {.lex_state = 255, .external_lex_state = 30}, - [2512] = {.lex_state = 255, .external_lex_state = 30}, - [2513] = {.lex_state = 255, .external_lex_state = 30}, - [2514] = {.lex_state = 255, .external_lex_state = 30}, - [2515] = {.lex_state = 255, .external_lex_state = 30}, - [2516] = {.lex_state = 73, .external_lex_state = 45}, - [2517] = {.lex_state = 255, .external_lex_state = 30}, - [2518] = {.lex_state = 255, .external_lex_state = 30}, - [2519] = {.lex_state = 255, .external_lex_state = 30}, - [2520] = {.lex_state = 255, .external_lex_state = 30}, - [2521] = {.lex_state = 255, .external_lex_state = 30}, - [2522] = {.lex_state = 255, .external_lex_state = 30}, - [2523] = {.lex_state = 255, .external_lex_state = 30}, - [2524] = {.lex_state = 255, .external_lex_state = 30}, - [2525] = {.lex_state = 255, .external_lex_state = 30}, - [2526] = {.lex_state = 255, .external_lex_state = 30}, - [2527] = {.lex_state = 255, .external_lex_state = 30}, - [2528] = {.lex_state = 255, .external_lex_state = 30}, - [2529] = {.lex_state = 255, .external_lex_state = 30}, - [2530] = {.lex_state = 238, .external_lex_state = 2}, - [2531] = {.lex_state = 255, .external_lex_state = 30}, - [2532] = {.lex_state = 255, .external_lex_state = 30}, - [2533] = {.lex_state = 255, .external_lex_state = 30}, - [2534] = {.lex_state = 255, .external_lex_state = 30}, - [2535] = {.lex_state = 255, .external_lex_state = 30}, - [2536] = {.lex_state = 255, .external_lex_state = 30}, - [2537] = {.lex_state = 255, .external_lex_state = 30}, - [2538] = {.lex_state = 255, .external_lex_state = 30}, - [2539] = {.lex_state = 255, .external_lex_state = 30}, - [2540] = {.lex_state = 255, .external_lex_state = 30}, - [2541] = {.lex_state = 255, .external_lex_state = 30}, - [2542] = {.lex_state = 255, .external_lex_state = 30}, - [2543] = {.lex_state = 255, .external_lex_state = 30}, - [2544] = {.lex_state = 73, .external_lex_state = 45}, - [2545] = {.lex_state = 255, .external_lex_state = 30}, - [2546] = {.lex_state = 255, .external_lex_state = 30}, - [2547] = {.lex_state = 255, .external_lex_state = 30}, - [2548] = {.lex_state = 255, .external_lex_state = 30}, - [2549] = {.lex_state = 255, .external_lex_state = 30}, - [2550] = {.lex_state = 255, .external_lex_state = 30}, - [2551] = {.lex_state = 255, .external_lex_state = 30}, - [2552] = {.lex_state = 255, .external_lex_state = 30}, - [2553] = {.lex_state = 255, .external_lex_state = 30}, - [2554] = {.lex_state = 255, .external_lex_state = 30}, - [2555] = {.lex_state = 255, .external_lex_state = 30}, - [2556] = {.lex_state = 255, .external_lex_state = 30}, - [2557] = {.lex_state = 255, .external_lex_state = 30}, - [2558] = {.lex_state = 255, .external_lex_state = 30}, - [2559] = {.lex_state = 255, .external_lex_state = 30}, - [2560] = {.lex_state = 255, .external_lex_state = 30}, - [2561] = {.lex_state = 255, .external_lex_state = 30}, - [2562] = {.lex_state = 255, .external_lex_state = 30}, - [2563] = {.lex_state = 255, .external_lex_state = 30}, - [2564] = {.lex_state = 255, .external_lex_state = 30}, - [2565] = {.lex_state = 255, .external_lex_state = 30}, - [2566] = {.lex_state = 255, .external_lex_state = 30}, - [2567] = {.lex_state = 255, .external_lex_state = 30}, - [2568] = {.lex_state = 255, .external_lex_state = 30}, - [2569] = {.lex_state = 255, .external_lex_state = 30}, - [2570] = {.lex_state = 255, .external_lex_state = 30}, - [2571] = {.lex_state = 255, .external_lex_state = 30}, - [2572] = {.lex_state = 255, .external_lex_state = 30}, - [2573] = {.lex_state = 255, .external_lex_state = 30}, - [2574] = {.lex_state = 255, .external_lex_state = 30}, - [2575] = {.lex_state = 255, .external_lex_state = 30}, - [2576] = {.lex_state = 255, .external_lex_state = 30}, - [2577] = {.lex_state = 255, .external_lex_state = 30}, - [2578] = {.lex_state = 255, .external_lex_state = 30}, - [2579] = {.lex_state = 255, .external_lex_state = 30}, - [2580] = {.lex_state = 255, .external_lex_state = 30}, - [2581] = {.lex_state = 255, .external_lex_state = 30}, - [2582] = {.lex_state = 255, .external_lex_state = 30}, - [2583] = {.lex_state = 255, .external_lex_state = 30}, - [2584] = {.lex_state = 255, .external_lex_state = 30}, - [2585] = {.lex_state = 255, .external_lex_state = 30}, - [2586] = {.lex_state = 255, .external_lex_state = 30}, - [2587] = {.lex_state = 255, .external_lex_state = 30}, - [2588] = {.lex_state = 255, .external_lex_state = 30}, - [2589] = {.lex_state = 255, .external_lex_state = 30}, - [2590] = {.lex_state = 255, .external_lex_state = 30}, - [2591] = {.lex_state = 255, .external_lex_state = 30}, - [2592] = {.lex_state = 255, .external_lex_state = 30}, - [2593] = {.lex_state = 255, .external_lex_state = 30}, - [2594] = {.lex_state = 255, .external_lex_state = 30}, - [2595] = {.lex_state = 255, .external_lex_state = 30}, - [2596] = {.lex_state = 255, .external_lex_state = 30}, - [2597] = {.lex_state = 255, .external_lex_state = 30}, - [2598] = {.lex_state = 255, .external_lex_state = 30}, - [2599] = {.lex_state = 255, .external_lex_state = 30}, - [2600] = {.lex_state = 255, .external_lex_state = 30}, - [2601] = {.lex_state = 255, .external_lex_state = 30}, - [2602] = {.lex_state = 255, .external_lex_state = 30}, - [2603] = {.lex_state = 75, .external_lex_state = 48}, - [2604] = {.lex_state = 255, .external_lex_state = 30}, - [2605] = {.lex_state = 238, .external_lex_state = 2}, - [2606] = {.lex_state = 255, .external_lex_state = 30}, - [2607] = {.lex_state = 255, .external_lex_state = 30}, - [2608] = {.lex_state = 255, .external_lex_state = 30}, - [2609] = {.lex_state = 255, .external_lex_state = 30}, - [2610] = {.lex_state = 255, .external_lex_state = 30}, - [2611] = {.lex_state = 255, .external_lex_state = 30}, - [2612] = {.lex_state = 238, .external_lex_state = 2}, - [2613] = {.lex_state = 255, .external_lex_state = 30}, - [2614] = {.lex_state = 255, .external_lex_state = 30}, - [2615] = {.lex_state = 255, .external_lex_state = 30}, - [2616] = {.lex_state = 255, .external_lex_state = 30}, - [2617] = {.lex_state = 255, .external_lex_state = 30}, - [2618] = {.lex_state = 255, .external_lex_state = 30}, - [2619] = {.lex_state = 255, .external_lex_state = 30}, - [2620] = {.lex_state = 255, .external_lex_state = 30}, - [2621] = {.lex_state = 255, .external_lex_state = 30}, - [2622] = {.lex_state = 255, .external_lex_state = 30}, - [2623] = {.lex_state = 255, .external_lex_state = 30}, - [2624] = {.lex_state = 255, .external_lex_state = 30}, - [2625] = {.lex_state = 255, .external_lex_state = 30}, - [2626] = {.lex_state = 255, .external_lex_state = 30}, - [2627] = {.lex_state = 255, .external_lex_state = 30}, - [2628] = {.lex_state = 255, .external_lex_state = 30}, - [2629] = {.lex_state = 255, .external_lex_state = 30}, - [2630] = {.lex_state = 255, .external_lex_state = 30}, - [2631] = {.lex_state = 255, .external_lex_state = 30}, - [2632] = {.lex_state = 255, .external_lex_state = 30}, - [2633] = {.lex_state = 255, .external_lex_state = 30}, - [2634] = {.lex_state = 255, .external_lex_state = 30}, - [2635] = {.lex_state = 255, .external_lex_state = 30}, - [2636] = {.lex_state = 255, .external_lex_state = 30}, - [2637] = {.lex_state = 255, .external_lex_state = 30}, - [2638] = {.lex_state = 255, .external_lex_state = 30}, - [2639] = {.lex_state = 255, .external_lex_state = 30}, - [2640] = {.lex_state = 255, .external_lex_state = 30}, - [2641] = {.lex_state = 255, .external_lex_state = 30}, - [2642] = {.lex_state = 255, .external_lex_state = 30}, - [2643] = {.lex_state = 255, .external_lex_state = 30}, - [2644] = {.lex_state = 255, .external_lex_state = 30}, - [2645] = {.lex_state = 73, .external_lex_state = 45}, - [2646] = {.lex_state = 255, .external_lex_state = 30}, - [2647] = {.lex_state = 255, .external_lex_state = 30}, - [2648] = {.lex_state = 255, .external_lex_state = 30}, - [2649] = {.lex_state = 255, .external_lex_state = 30}, - [2650] = {.lex_state = 255, .external_lex_state = 30}, - [2651] = {.lex_state = 255, .external_lex_state = 30}, - [2652] = {.lex_state = 255, .external_lex_state = 30}, - [2653] = {.lex_state = 255, .external_lex_state = 30}, - [2654] = {.lex_state = 255, .external_lex_state = 30}, - [2655] = {.lex_state = 255, .external_lex_state = 30}, - [2656] = {.lex_state = 255, .external_lex_state = 30}, - [2657] = {.lex_state = 255, .external_lex_state = 30}, - [2658] = {.lex_state = 255, .external_lex_state = 30}, - [2659] = {.lex_state = 255, .external_lex_state = 30}, - [2660] = {.lex_state = 255, .external_lex_state = 30}, - [2661] = {.lex_state = 255, .external_lex_state = 30}, - [2662] = {.lex_state = 255, .external_lex_state = 30}, - [2663] = {.lex_state = 255, .external_lex_state = 30}, - [2664] = {.lex_state = 255, .external_lex_state = 30}, - [2665] = {.lex_state = 255, .external_lex_state = 30}, - [2666] = {.lex_state = 255, .external_lex_state = 30}, - [2667] = {.lex_state = 255, .external_lex_state = 30}, - [2668] = {.lex_state = 255, .external_lex_state = 30}, - [2669] = {.lex_state = 255, .external_lex_state = 30}, - [2670] = {.lex_state = 255, .external_lex_state = 30}, - [2671] = {.lex_state = 255, .external_lex_state = 30}, - [2672] = {.lex_state = 255, .external_lex_state = 30}, - [2673] = {.lex_state = 255, .external_lex_state = 30}, - [2674] = {.lex_state = 255, .external_lex_state = 30}, - [2675] = {.lex_state = 255, .external_lex_state = 30}, - [2676] = {.lex_state = 255, .external_lex_state = 30}, - [2677] = {.lex_state = 255, .external_lex_state = 30}, - [2678] = {.lex_state = 255, .external_lex_state = 30}, - [2679] = {.lex_state = 255, .external_lex_state = 30}, - [2680] = {.lex_state = 255, .external_lex_state = 30}, - [2681] = {.lex_state = 255, .external_lex_state = 30}, - [2682] = {.lex_state = 255, .external_lex_state = 30}, - [2683] = {.lex_state = 255, .external_lex_state = 30}, - [2684] = {.lex_state = 255, .external_lex_state = 30}, - [2685] = {.lex_state = 255, .external_lex_state = 30}, - [2686] = {.lex_state = 255, .external_lex_state = 30}, - [2687] = {.lex_state = 255, .external_lex_state = 30}, - [2688] = {.lex_state = 255, .external_lex_state = 30}, - [2689] = {.lex_state = 255, .external_lex_state = 30}, - [2690] = {.lex_state = 255, .external_lex_state = 30}, - [2691] = {.lex_state = 255, .external_lex_state = 30}, - [2692] = {.lex_state = 255, .external_lex_state = 30}, - [2693] = {.lex_state = 255, .external_lex_state = 30}, - [2694] = {.lex_state = 255, .external_lex_state = 30}, - [2695] = {.lex_state = 255, .external_lex_state = 30}, - [2696] = {.lex_state = 255, .external_lex_state = 30}, - [2697] = {.lex_state = 255, .external_lex_state = 30}, - [2698] = {.lex_state = 255, .external_lex_state = 30}, - [2699] = {.lex_state = 255, .external_lex_state = 30}, - [2700] = {.lex_state = 255, .external_lex_state = 30}, - [2701] = {.lex_state = 255, .external_lex_state = 30}, - [2702] = {.lex_state = 255, .external_lex_state = 30}, - [2703] = {.lex_state = 255, .external_lex_state = 30}, - [2704] = {.lex_state = 255, .external_lex_state = 30}, - [2705] = {.lex_state = 255, .external_lex_state = 30}, - [2706] = {.lex_state = 255, .external_lex_state = 30}, - [2707] = {.lex_state = 255, .external_lex_state = 30}, - [2708] = {.lex_state = 255, .external_lex_state = 30}, - [2709] = {.lex_state = 255, .external_lex_state = 30}, - [2710] = {.lex_state = 75, .external_lex_state = 36}, - [2711] = {.lex_state = 75, .external_lex_state = 36}, - [2712] = {.lex_state = 425, .external_lex_state = 48}, - [2713] = {.lex_state = 75, .external_lex_state = 48}, - [2714] = {.lex_state = 75, .external_lex_state = 34}, - [2715] = {.lex_state = 75, .external_lex_state = 36}, - [2716] = {.lex_state = 75, .external_lex_state = 36}, - [2717] = {.lex_state = 75, .external_lex_state = 48}, - [2718] = {.lex_state = 75, .external_lex_state = 48}, - [2719] = {.lex_state = 75, .external_lex_state = 36}, - [2720] = {.lex_state = 75, .external_lex_state = 36}, - [2721] = {.lex_state = 75, .external_lex_state = 49}, - [2722] = {.lex_state = 75, .external_lex_state = 34}, - [2723] = {.lex_state = 75, .external_lex_state = 48}, - [2724] = {.lex_state = 75, .external_lex_state = 48}, - [2725] = {.lex_state = 75, .external_lex_state = 48}, - [2726] = {.lex_state = 425, .external_lex_state = 49}, - [2727] = {.lex_state = 75, .external_lex_state = 36}, - [2728] = {.lex_state = 425, .external_lex_state = 48}, - [2729] = {.lex_state = 425, .external_lex_state = 48}, - [2730] = {.lex_state = 75, .external_lex_state = 48}, - [2731] = {.lex_state = 75, .external_lex_state = 48}, - [2732] = {.lex_state = 75, .external_lex_state = 48}, - [2733] = {.lex_state = 425, .external_lex_state = 48}, - [2734] = {.lex_state = 75, .external_lex_state = 48}, - [2735] = {.lex_state = 75, .external_lex_state = 48}, - [2736] = {.lex_state = 75, .external_lex_state = 48}, - [2737] = {.lex_state = 75, .external_lex_state = 48}, - [2738] = {.lex_state = 426, .external_lex_state = 34}, - [2739] = {.lex_state = 425, .external_lex_state = 48}, - [2740] = {.lex_state = 425, .external_lex_state = 48}, - [2741] = {.lex_state = 75, .external_lex_state = 48}, - [2742] = {.lex_state = 425, .external_lex_state = 48}, - [2743] = {.lex_state = 425, .external_lex_state = 48}, - [2744] = {.lex_state = 75, .external_lex_state = 49}, - [2745] = {.lex_state = 75, .external_lex_state = 48}, - [2746] = {.lex_state = 425, .external_lex_state = 48}, - [2747] = {.lex_state = 75, .external_lex_state = 48}, - [2748] = {.lex_state = 75, .external_lex_state = 36}, - [2749] = {.lex_state = 75, .external_lex_state = 34}, - [2750] = {.lex_state = 75, .external_lex_state = 36}, - [2751] = {.lex_state = 75, .external_lex_state = 48}, - [2752] = {.lex_state = 75, .external_lex_state = 34}, - [2753] = {.lex_state = 425, .external_lex_state = 48}, - [2754] = {.lex_state = 75, .external_lex_state = 48}, - [2755] = {.lex_state = 425, .external_lex_state = 48}, - [2756] = {.lex_state = 75, .external_lex_state = 34}, - [2757] = {.lex_state = 75, .external_lex_state = 48}, - [2758] = {.lex_state = 75, .external_lex_state = 34}, - [2759] = {.lex_state = 75, .external_lex_state = 36}, - [2760] = {.lex_state = 75, .external_lex_state = 48}, - [2761] = {.lex_state = 75, .external_lex_state = 48}, - [2762] = {.lex_state = 75, .external_lex_state = 49}, - [2763] = {.lex_state = 425, .external_lex_state = 48}, - [2764] = {.lex_state = 425, .external_lex_state = 48}, - [2765] = {.lex_state = 75, .external_lex_state = 49}, - [2766] = {.lex_state = 75, .external_lex_state = 49}, - [2767] = {.lex_state = 425, .external_lex_state = 48}, - [2768] = {.lex_state = 75, .external_lex_state = 48}, - [2769] = {.lex_state = 75, .external_lex_state = 48}, - [2770] = {.lex_state = 425, .external_lex_state = 48}, - [2771] = {.lex_state = 75, .external_lex_state = 48}, - [2772] = {.lex_state = 425, .external_lex_state = 48}, - [2773] = {.lex_state = 75, .external_lex_state = 49}, - [2774] = {.lex_state = 425, .external_lex_state = 48}, - [2775] = {.lex_state = 425, .external_lex_state = 48}, - [2776] = {.lex_state = 425, .external_lex_state = 48}, - [2777] = {.lex_state = 75, .external_lex_state = 49}, - [2778] = {.lex_state = 75, .external_lex_state = 48}, - [2779] = {.lex_state = 75, .external_lex_state = 49}, - [2780] = {.lex_state = 75, .external_lex_state = 36}, - [2781] = {.lex_state = 425, .external_lex_state = 48}, - [2782] = {.lex_state = 425, .external_lex_state = 48}, - [2783] = {.lex_state = 75, .external_lex_state = 36}, - [2784] = {.lex_state = 75, .external_lex_state = 48}, - [2785] = {.lex_state = 425, .external_lex_state = 48}, - [2786] = {.lex_state = 75, .external_lex_state = 48}, - [2787] = {.lex_state = 75, .external_lex_state = 48}, - [2788] = {.lex_state = 426, .external_lex_state = 34}, - [2789] = {.lex_state = 425, .external_lex_state = 48}, - [2790] = {.lex_state = 75, .external_lex_state = 48}, - [2791] = {.lex_state = 75, .external_lex_state = 49}, - [2792] = {.lex_state = 75, .external_lex_state = 48}, - [2793] = {.lex_state = 425, .external_lex_state = 48}, - [2794] = {.lex_state = 425, .external_lex_state = 48}, - [2795] = {.lex_state = 425, .external_lex_state = 49}, - [2796] = {.lex_state = 425, .external_lex_state = 36}, - [2797] = {.lex_state = 425, .external_lex_state = 36}, - [2798] = {.lex_state = 425, .external_lex_state = 36}, - [2799] = {.lex_state = 75, .external_lex_state = 36}, - [2800] = {.lex_state = 425, .external_lex_state = 36}, - [2801] = {.lex_state = 251}, - [2802] = {.lex_state = 251}, - [2803] = {.lex_state = 251}, - [2804] = {.lex_state = 425, .external_lex_state = 48}, - [2805] = {.lex_state = 425, .external_lex_state = 48}, - [2806] = {.lex_state = 425, .external_lex_state = 49}, - [2807] = {.lex_state = 426, .external_lex_state = 36}, - [2808] = {.lex_state = 75, .external_lex_state = 49}, - [2809] = {.lex_state = 425, .external_lex_state = 36}, - [2810] = {.lex_state = 425, .external_lex_state = 49}, - [2811] = {.lex_state = 184, .external_lex_state = 50}, - [2812] = {.lex_state = 184, .external_lex_state = 50}, - [2813] = {.lex_state = 426, .external_lex_state = 36}, - [2814] = {.lex_state = 425, .external_lex_state = 36}, - [2815] = {.lex_state = 425, .external_lex_state = 49}, - [2816] = {.lex_state = 425, .external_lex_state = 48}, - [2817] = {.lex_state = 425, .external_lex_state = 49}, - [2818] = {.lex_state = 426, .external_lex_state = 34}, - [2819] = {.lex_state = 425, .external_lex_state = 34}, - [2820] = {.lex_state = 425, .external_lex_state = 48}, - [2821] = {.lex_state = 425, .external_lex_state = 36}, - [2822] = {.lex_state = 75, .external_lex_state = 49}, - [2823] = {.lex_state = 425, .external_lex_state = 49}, - [2824] = {.lex_state = 425, .external_lex_state = 49}, - [2825] = {.lex_state = 425, .external_lex_state = 36}, - [2826] = {.lex_state = 425, .external_lex_state = 49}, - [2827] = {.lex_state = 75, .external_lex_state = 49}, - [2828] = {.lex_state = 75, .external_lex_state = 49}, - [2829] = {.lex_state = 251}, - [2830] = {.lex_state = 184, .external_lex_state = 50}, - [2831] = {.lex_state = 425, .external_lex_state = 48}, - [2832] = {.lex_state = 425, .external_lex_state = 48}, - [2833] = {.lex_state = 425, .external_lex_state = 36}, - [2834] = {.lex_state = 251}, - [2835] = {.lex_state = 75, .external_lex_state = 49}, - [2836] = {.lex_state = 75, .external_lex_state = 49}, - [2837] = {.lex_state = 425, .external_lex_state = 49}, - [2838] = {.lex_state = 425, .external_lex_state = 49}, - [2839] = {.lex_state = 425, .external_lex_state = 49}, - [2840] = {.lex_state = 75, .external_lex_state = 49}, - [2841] = {.lex_state = 75, .external_lex_state = 36}, - [2842] = {.lex_state = 75, .external_lex_state = 49}, - [2843] = {.lex_state = 425, .external_lex_state = 49}, - [2844] = {.lex_state = 75, .external_lex_state = 49}, - [2845] = {.lex_state = 425, .external_lex_state = 36}, - [2846] = {.lex_state = 425, .external_lex_state = 49}, - [2847] = {.lex_state = 426, .external_lex_state = 36}, - [2848] = {.lex_state = 425, .external_lex_state = 49}, - [2849] = {.lex_state = 425, .external_lex_state = 49}, - [2850] = {.lex_state = 75, .external_lex_state = 49}, - [2851] = {.lex_state = 425, .external_lex_state = 36}, - [2852] = {.lex_state = 425, .external_lex_state = 49}, - [2853] = {.lex_state = 425, .external_lex_state = 49}, - [2854] = {.lex_state = 425, .external_lex_state = 36}, - [2855] = {.lex_state = 426, .external_lex_state = 36}, - [2856] = {.lex_state = 425, .external_lex_state = 48}, - [2857] = {.lex_state = 425, .external_lex_state = 48}, - [2858] = {.lex_state = 75, .external_lex_state = 49}, - [2859] = {.lex_state = 251}, - [2860] = {.lex_state = 184, .external_lex_state = 50}, - [2861] = {.lex_state = 425, .external_lex_state = 34}, - [2862] = {.lex_state = 75, .external_lex_state = 49}, - [2863] = {.lex_state = 425, .external_lex_state = 49}, - [2864] = {.lex_state = 75, .external_lex_state = 36}, - [2865] = {.lex_state = 251}, - [2866] = {.lex_state = 184, .external_lex_state = 50}, - [2867] = {.lex_state = 425, .external_lex_state = 49}, - [2868] = {.lex_state = 425, .external_lex_state = 34}, - [2869] = {.lex_state = 425, .external_lex_state = 48}, - [2870] = {.lex_state = 425, .external_lex_state = 48}, - [2871] = {.lex_state = 426, .external_lex_state = 36}, - [2872] = {.lex_state = 251}, - [2873] = {.lex_state = 426, .external_lex_state = 36}, - [2874] = {.lex_state = 426, .external_lex_state = 36}, - [2875] = {.lex_state = 75, .external_lex_state = 49}, - [2876] = {.lex_state = 75, .external_lex_state = 36}, - [2877] = {.lex_state = 75, .external_lex_state = 49}, - [2878] = {.lex_state = 425, .external_lex_state = 49}, - [2879] = {.lex_state = 425, .external_lex_state = 49}, - [2880] = {.lex_state = 75, .external_lex_state = 49}, - [2881] = {.lex_state = 75, .external_lex_state = 34}, - [2882] = {.lex_state = 251}, - [2883] = {.lex_state = 425, .external_lex_state = 48}, - [2884] = {.lex_state = 75, .external_lex_state = 49}, - [2885] = {.lex_state = 426, .external_lex_state = 34}, - [2886] = {.lex_state = 75, .external_lex_state = 36}, - [2887] = {.lex_state = 75, .external_lex_state = 49}, - [2888] = {.lex_state = 425, .external_lex_state = 49}, - [2889] = {.lex_state = 75, .external_lex_state = 49}, - [2890] = {.lex_state = 75, .external_lex_state = 49}, - [2891] = {.lex_state = 184, .external_lex_state = 50}, - [2892] = {.lex_state = 425, .external_lex_state = 34}, - [2893] = {.lex_state = 75, .external_lex_state = 49}, - [2894] = {.lex_state = 75, .external_lex_state = 49}, - [2895] = {.lex_state = 426, .external_lex_state = 36}, - [2896] = {.lex_state = 75, .external_lex_state = 49}, - [2897] = {.lex_state = 425, .external_lex_state = 48}, - [2898] = {.lex_state = 75, .external_lex_state = 49}, - [2899] = {.lex_state = 75, .external_lex_state = 49}, - [2900] = {.lex_state = 426, .external_lex_state = 34}, - [2901] = {.lex_state = 425, .external_lex_state = 49}, - [2902] = {.lex_state = 426, .external_lex_state = 36}, - [2903] = {.lex_state = 75, .external_lex_state = 49}, - [2904] = {.lex_state = 75, .external_lex_state = 49}, - [2905] = {.lex_state = 425, .external_lex_state = 36}, - [2906] = {.lex_state = 425, .external_lex_state = 49}, - [2907] = {.lex_state = 426, .external_lex_state = 36}, - [2908] = {.lex_state = 184, .external_lex_state = 50}, - [2909] = {.lex_state = 425, .external_lex_state = 36}, - [2910] = {.lex_state = 426, .external_lex_state = 34}, - [2911] = {.lex_state = 184, .external_lex_state = 50}, - [2912] = {.lex_state = 425, .external_lex_state = 36}, - [2913] = {.lex_state = 425, .external_lex_state = 48}, - [2914] = {.lex_state = 425, .external_lex_state = 36}, - [2915] = {.lex_state = 425, .external_lex_state = 49}, - [2916] = {.lex_state = 425, .external_lex_state = 48}, - [2917] = {.lex_state = 425, .external_lex_state = 49}, - [2918] = {.lex_state = 425, .external_lex_state = 49}, - [2919] = {.lex_state = 425, .external_lex_state = 49}, - [2920] = {.lex_state = 425, .external_lex_state = 49}, - [2921] = {.lex_state = 425, .external_lex_state = 49}, - [2922] = {.lex_state = 184, .external_lex_state = 50}, - [2923] = {.lex_state = 184, .external_lex_state = 50}, - [2924] = {.lex_state = 425, .external_lex_state = 49}, - [2925] = {.lex_state = 425, .external_lex_state = 34}, - [2926] = {.lex_state = 184, .external_lex_state = 50}, - [2927] = {.lex_state = 425, .external_lex_state = 49}, - [2928] = {.lex_state = 184, .external_lex_state = 50}, - [2929] = {.lex_state = 184, .external_lex_state = 50}, - [2930] = {.lex_state = 425, .external_lex_state = 49}, - [2931] = {.lex_state = 75, .external_lex_state = 36}, - [2932] = {.lex_state = 425, .external_lex_state = 49}, - [2933] = {.lex_state = 184, .external_lex_state = 50}, - [2934] = {.lex_state = 425, .external_lex_state = 36}, - [2935] = {.lex_state = 425, .external_lex_state = 49}, - [2936] = {.lex_state = 425, .external_lex_state = 36}, - [2937] = {.lex_state = 251}, - [2938] = {.lex_state = 184, .external_lex_state = 50}, - [2939] = {.lex_state = 184, .external_lex_state = 50}, - [2940] = {.lex_state = 425, .external_lex_state = 49}, - [2941] = {.lex_state = 425, .external_lex_state = 36}, - [2942] = {.lex_state = 75, .external_lex_state = 36}, - [2943] = {.lex_state = 251}, - [2944] = {.lex_state = 251}, - [2945] = {.lex_state = 425, .external_lex_state = 36}, - [2946] = {.lex_state = 184, .external_lex_state = 50}, - [2947] = {.lex_state = 75, .external_lex_state = 36}, - [2948] = {.lex_state = 251}, - [2949] = {.lex_state = 75, .external_lex_state = 34}, - [2950] = {.lex_state = 75, .external_lex_state = 36}, - [2951] = {.lex_state = 75, .external_lex_state = 34}, - [2952] = {.lex_state = 184, .external_lex_state = 50}, - [2953] = {.lex_state = 425, .external_lex_state = 36}, - [2954] = {.lex_state = 425, .external_lex_state = 36}, - [2955] = {.lex_state = 425, .external_lex_state = 48}, - [2956] = {.lex_state = 425, .external_lex_state = 36}, - [2957] = {.lex_state = 251}, - [2958] = {.lex_state = 184, .external_lex_state = 50}, - [2959] = {.lex_state = 425, .external_lex_state = 36}, - [2960] = {.lex_state = 425, .external_lex_state = 49}, - [2961] = {.lex_state = 75, .external_lex_state = 34}, - [2962] = {.lex_state = 184, .external_lex_state = 50}, - [2963] = {.lex_state = 251}, - [2964] = {.lex_state = 184, .external_lex_state = 50}, - [2965] = {.lex_state = 425, .external_lex_state = 49}, - [2966] = {.lex_state = 425, .external_lex_state = 49}, - [2967] = {.lex_state = 251}, - [2968] = {.lex_state = 426, .external_lex_state = 34}, - [2969] = {.lex_state = 184, .external_lex_state = 50}, - [2970] = {.lex_state = 75, .external_lex_state = 36}, - [2971] = {.lex_state = 425, .external_lex_state = 49}, - [2972] = {.lex_state = 425, .external_lex_state = 49}, - [2973] = {.lex_state = 425, .external_lex_state = 48}, - [2974] = {.lex_state = 75, .external_lex_state = 36}, - [2975] = {.lex_state = 426, .external_lex_state = 34}, - [2976] = {.lex_state = 251}, - [2977] = {.lex_state = 425, .external_lex_state = 34}, - [2978] = {.lex_state = 251}, - [2979] = {.lex_state = 184, .external_lex_state = 50}, - [2980] = {.lex_state = 184, .external_lex_state = 50}, - [2981] = {.lex_state = 184, .external_lex_state = 50}, - [2982] = {.lex_state = 184, .external_lex_state = 50}, - [2983] = {.lex_state = 425, .external_lex_state = 49}, - [2984] = {.lex_state = 426, .external_lex_state = 36}, - [2985] = {.lex_state = 75, .external_lex_state = 36}, - [2986] = {.lex_state = 426, .external_lex_state = 36}, - [2987] = {.lex_state = 249, .external_lex_state = 35}, - [2988] = {.lex_state = 426, .external_lex_state = 36}, - [2989] = {.lex_state = 425, .external_lex_state = 49}, - [2990] = {.lex_state = 75, .external_lex_state = 36}, - [2991] = {.lex_state = 75, .external_lex_state = 36}, - [2992] = {.lex_state = 426, .external_lex_state = 36}, - [2993] = {.lex_state = 426, .external_lex_state = 36}, - [2994] = {.lex_state = 426, .external_lex_state = 36}, - [2995] = {.lex_state = 426, .external_lex_state = 36}, - [2996] = {.lex_state = 75, .external_lex_state = 36}, - [2997] = {.lex_state = 426, .external_lex_state = 36}, - [2998] = {.lex_state = 425, .external_lex_state = 36}, - [2999] = {.lex_state = 249, .external_lex_state = 35}, - [3000] = {.lex_state = 75, .external_lex_state = 36}, - [3001] = {.lex_state = 75, .external_lex_state = 36}, - [3002] = {.lex_state = 75, .external_lex_state = 36}, - [3003] = {.lex_state = 75, .external_lex_state = 36}, - [3004] = {.lex_state = 426, .external_lex_state = 36}, - [3005] = {.lex_state = 249, .external_lex_state = 35}, - [3006] = {.lex_state = 75, .external_lex_state = 36}, - [3007] = {.lex_state = 75, .external_lex_state = 36}, - [3008] = {.lex_state = 75, .external_lex_state = 36}, - [3009] = {.lex_state = 75, .external_lex_state = 36}, - [3010] = {.lex_state = 75, .external_lex_state = 36}, - [3011] = {.lex_state = 426, .external_lex_state = 36}, - [3012] = {.lex_state = 75, .external_lex_state = 36}, - [3013] = {.lex_state = 75, .external_lex_state = 36}, - [3014] = {.lex_state = 426, .external_lex_state = 36}, - [3015] = {.lex_state = 75, .external_lex_state = 36}, - [3016] = {.lex_state = 425, .external_lex_state = 49}, - [3017] = {.lex_state = 425, .external_lex_state = 49}, - [3018] = {.lex_state = 426, .external_lex_state = 36}, - [3019] = {.lex_state = 426, .external_lex_state = 36}, - [3020] = {.lex_state = 249, .external_lex_state = 35}, - [3021] = {.lex_state = 426, .external_lex_state = 36}, - [3022] = {.lex_state = 75, .external_lex_state = 36}, - [3023] = {.lex_state = 75, .external_lex_state = 36}, - [3024] = {.lex_state = 249, .external_lex_state = 35}, - [3025] = {.lex_state = 75, .external_lex_state = 36}, - [3026] = {.lex_state = 426, .external_lex_state = 36}, - [3027] = {.lex_state = 426, .external_lex_state = 36}, - [3028] = {.lex_state = 426, .external_lex_state = 36}, - [3029] = {.lex_state = 426, .external_lex_state = 36}, - [3030] = {.lex_state = 425, .external_lex_state = 49}, - [3031] = {.lex_state = 75, .external_lex_state = 36}, - [3032] = {.lex_state = 425, .external_lex_state = 36}, - [3033] = {.lex_state = 426, .external_lex_state = 36}, - [3034] = {.lex_state = 425, .external_lex_state = 36}, - [3035] = {.lex_state = 426, .external_lex_state = 36}, - [3036] = {.lex_state = 426, .external_lex_state = 36}, - [3037] = {.lex_state = 426, .external_lex_state = 36}, - [3038] = {.lex_state = 426, .external_lex_state = 36}, - [3039] = {.lex_state = 75, .external_lex_state = 36}, - [3040] = {.lex_state = 426, .external_lex_state = 36}, - [3041] = {.lex_state = 426, .external_lex_state = 36}, - [3042] = {.lex_state = 75, .external_lex_state = 36}, - [3043] = {.lex_state = 426, .external_lex_state = 36}, - [3044] = {.lex_state = 75, .external_lex_state = 36}, - [3045] = {.lex_state = 75, .external_lex_state = 36}, - [3046] = {.lex_state = 75, .external_lex_state = 36}, - [3047] = {.lex_state = 258}, - [3048] = {.lex_state = 426, .external_lex_state = 36}, - [3049] = {.lex_state = 425, .external_lex_state = 36}, - [3050] = {.lex_state = 426, .external_lex_state = 36}, - [3051] = {.lex_state = 426, .external_lex_state = 36}, - [3052] = {.lex_state = 426, .external_lex_state = 36}, - [3053] = {.lex_state = 426, .external_lex_state = 36}, - [3054] = {.lex_state = 75, .external_lex_state = 36}, - [3055] = {.lex_state = 75, .external_lex_state = 36}, - [3056] = {.lex_state = 426, .external_lex_state = 36}, - [3057] = {.lex_state = 75, .external_lex_state = 36}, - [3058] = {.lex_state = 426, .external_lex_state = 36}, - [3059] = {.lex_state = 425, .external_lex_state = 49}, - [3060] = {.lex_state = 425, .external_lex_state = 49}, - [3061] = {.lex_state = 75, .external_lex_state = 36}, - [3062] = {.lex_state = 75, .external_lex_state = 36}, - [3063] = {.lex_state = 426, .external_lex_state = 36}, - [3064] = {.lex_state = 75, .external_lex_state = 36}, - [3065] = {.lex_state = 75, .external_lex_state = 36}, - [3066] = {.lex_state = 75, .external_lex_state = 36}, - [3067] = {.lex_state = 75, .external_lex_state = 36}, - [3068] = {.lex_state = 75, .external_lex_state = 36}, - [3069] = {.lex_state = 75, .external_lex_state = 36}, - [3070] = {.lex_state = 426, .external_lex_state = 36}, - [3071] = {.lex_state = 426, .external_lex_state = 36}, - [3072] = {.lex_state = 75, .external_lex_state = 36}, - [3073] = {.lex_state = 426, .external_lex_state = 36}, - [3074] = {.lex_state = 75, .external_lex_state = 36}, - [3075] = {.lex_state = 75, .external_lex_state = 36}, - [3076] = {.lex_state = 75, .external_lex_state = 36}, - [3077] = {.lex_state = 183, .external_lex_state = 38}, - [3078] = {.lex_state = 426, .external_lex_state = 36}, - [3079] = {.lex_state = 426, .external_lex_state = 36}, - [3080] = {.lex_state = 426, .external_lex_state = 36}, - [3081] = {.lex_state = 75, .external_lex_state = 36}, - [3082] = {.lex_state = 426, .external_lex_state = 36}, - [3083] = {.lex_state = 426, .external_lex_state = 36}, - [3084] = {.lex_state = 75, .external_lex_state = 36}, - [3085] = {.lex_state = 426, .external_lex_state = 36}, - [3086] = {.lex_state = 75, .external_lex_state = 36}, - [3087] = {.lex_state = 75, .external_lex_state = 36}, - [3088] = {.lex_state = 426, .external_lex_state = 36}, - [3089] = {.lex_state = 75, .external_lex_state = 36}, - [3090] = {.lex_state = 183, .external_lex_state = 38}, - [3091] = {.lex_state = 426, .external_lex_state = 36}, - [3092] = {.lex_state = 75, .external_lex_state = 36}, - [3093] = {.lex_state = 249, .external_lex_state = 35}, - [3094] = {.lex_state = 180, .external_lex_state = 50}, - [3095] = {.lex_state = 249, .external_lex_state = 35}, - [3096] = {.lex_state = 242, .external_lex_state = 51}, - [3097] = {.lex_state = 242, .external_lex_state = 51}, - [3098] = {.lex_state = 242, .external_lex_state = 51}, - [3099] = {.lex_state = 425, .external_lex_state = 36}, - [3100] = {.lex_state = 249, .external_lex_state = 35}, - [3101] = {.lex_state = 425, .external_lex_state = 36}, - [3102] = {.lex_state = 242, .external_lex_state = 51}, - [3103] = {.lex_state = 242, .external_lex_state = 51}, - [3104] = {.lex_state = 249, .external_lex_state = 35}, - [3105] = {.lex_state = 183, .external_lex_state = 38}, - [3106] = {.lex_state = 251}, - [3107] = {.lex_state = 249, .external_lex_state = 35}, - [3108] = {.lex_state = 251}, - [3109] = {.lex_state = 249, .external_lex_state = 35}, - [3110] = {.lex_state = 426, .external_lex_state = 36}, - [3111] = {.lex_state = 426, .external_lex_state = 36}, - [3112] = {.lex_state = 249, .external_lex_state = 35}, - [3113] = {.lex_state = 249, .external_lex_state = 35}, - [3114] = {.lex_state = 242, .external_lex_state = 51}, - [3115] = {.lex_state = 249, .external_lex_state = 35}, - [3116] = {.lex_state = 180, .external_lex_state = 50}, - [3117] = {.lex_state = 249, .external_lex_state = 35}, - [3118] = {.lex_state = 249, .external_lex_state = 35}, - [3119] = {.lex_state = 426, .external_lex_state = 36}, - [3120] = {.lex_state = 180, .external_lex_state = 50}, - [3121] = {.lex_state = 249, .external_lex_state = 35}, - [3122] = {.lex_state = 249, .external_lex_state = 35}, - [3123] = {.lex_state = 425, .external_lex_state = 36}, - [3124] = {.lex_state = 425, .external_lex_state = 36}, - [3125] = {.lex_state = 249, .external_lex_state = 35}, - [3126] = {.lex_state = 251}, - [3127] = {.lex_state = 251}, - [3128] = {.lex_state = 251}, - [3129] = {.lex_state = 425, .external_lex_state = 36}, - [3130] = {.lex_state = 249, .external_lex_state = 35}, - [3131] = {.lex_state = 251}, - [3132] = {.lex_state = 249, .external_lex_state = 35}, - [3133] = {.lex_state = 249, .external_lex_state = 35}, - [3134] = {.lex_state = 425, .external_lex_state = 36}, - [3135] = {.lex_state = 425, .external_lex_state = 36}, - [3136] = {.lex_state = 75, .external_lex_state = 48}, - [3137] = {.lex_state = 249, .external_lex_state = 35}, - [3138] = {.lex_state = 180, .external_lex_state = 50}, - [3139] = {.lex_state = 180, .external_lex_state = 50}, - [3140] = {.lex_state = 249, .external_lex_state = 35}, - [3141] = {.lex_state = 249, .external_lex_state = 35}, - [3142] = {.lex_state = 249, .external_lex_state = 35}, - [3143] = {.lex_state = 425, .external_lex_state = 36}, - [3144] = {.lex_state = 232, .external_lex_state = 52}, - [3145] = {.lex_state = 232, .external_lex_state = 52}, - [3146] = {.lex_state = 232, .external_lex_state = 52}, - [3147] = {.lex_state = 232, .external_lex_state = 52}, - [3148] = {.lex_state = 251, .external_lex_state = 42}, - [3149] = {.lex_state = 250, .external_lex_state = 37}, - [3150] = {.lex_state = 242, .external_lex_state = 51}, - [3151] = {.lex_state = 75, .external_lex_state = 48}, - [3152] = {.lex_state = 232, .external_lex_state = 52}, - [3153] = {.lex_state = 242, .external_lex_state = 51}, - [3154] = {.lex_state = 232, .external_lex_state = 52}, - [3155] = {.lex_state = 250, .external_lex_state = 37}, - [3156] = {.lex_state = 232, .external_lex_state = 52}, - [3157] = {.lex_state = 425, .external_lex_state = 36}, - [3158] = {.lex_state = 250, .external_lex_state = 37}, - [3159] = {.lex_state = 232, .external_lex_state = 52}, - [3160] = {.lex_state = 250, .external_lex_state = 37}, - [3161] = {.lex_state = 242, .external_lex_state = 51}, - [3162] = {.lex_state = 425, .external_lex_state = 36}, - [3163] = {.lex_state = 232, .external_lex_state = 52}, - [3164] = {.lex_state = 232, .external_lex_state = 52}, - [3165] = {.lex_state = 232, .external_lex_state = 52}, - [3166] = {.lex_state = 232, .external_lex_state = 52}, - [3167] = {.lex_state = 242, .external_lex_state = 51}, - [3168] = {.lex_state = 250, .external_lex_state = 37}, - [3169] = {.lex_state = 75, .external_lex_state = 34}, - [3170] = {.lex_state = 242, .external_lex_state = 51}, - [3171] = {.lex_state = 242, .external_lex_state = 51}, - [3172] = {.lex_state = 232, .external_lex_state = 52}, - [3173] = {.lex_state = 232, .external_lex_state = 52}, - [3174] = {.lex_state = 242, .external_lex_state = 51}, - [3175] = {.lex_state = 250, .external_lex_state = 37}, - [3176] = {.lex_state = 232, .external_lex_state = 52}, - [3177] = {.lex_state = 250, .external_lex_state = 37}, - [3178] = {.lex_state = 242, .external_lex_state = 51}, - [3179] = {.lex_state = 425, .external_lex_state = 36}, - [3180] = {.lex_state = 242, .external_lex_state = 51}, - [3181] = {.lex_state = 232, .external_lex_state = 52}, - [3182] = {.lex_state = 232, .external_lex_state = 52}, - [3183] = {.lex_state = 242, .external_lex_state = 51}, - [3184] = {.lex_state = 232, .external_lex_state = 52}, - [3185] = {.lex_state = 232, .external_lex_state = 52}, - [3186] = {.lex_state = 75, .external_lex_state = 48}, - [3187] = {.lex_state = 232, .external_lex_state = 52}, - [3188] = {.lex_state = 250, .external_lex_state = 37}, - [3189] = {.lex_state = 250, .external_lex_state = 37}, - [3190] = {.lex_state = 250, .external_lex_state = 37}, - [3191] = {.lex_state = 232, .external_lex_state = 52}, - [3192] = {.lex_state = 232, .external_lex_state = 52}, - [3193] = {.lex_state = 232, .external_lex_state = 52}, - [3194] = {.lex_state = 232, .external_lex_state = 52}, - [3195] = {.lex_state = 250, .external_lex_state = 37}, - [3196] = {.lex_state = 232, .external_lex_state = 52}, - [3197] = {.lex_state = 232, .external_lex_state = 52}, - [3198] = {.lex_state = 232, .external_lex_state = 52}, - [3199] = {.lex_state = 250, .external_lex_state = 37}, - [3200] = {.lex_state = 232, .external_lex_state = 52}, - [3201] = {.lex_state = 232, .external_lex_state = 52}, - [3202] = {.lex_state = 250, .external_lex_state = 37}, - [3203] = {.lex_state = 251, .external_lex_state = 42}, - [3204] = {.lex_state = 250, .external_lex_state = 37}, - [3205] = {.lex_state = 232, .external_lex_state = 52}, - [3206] = {.lex_state = 242, .external_lex_state = 51}, - [3207] = {.lex_state = 232, .external_lex_state = 52}, - [3208] = {.lex_state = 232, .external_lex_state = 52}, - [3209] = {.lex_state = 242, .external_lex_state = 51}, - [3210] = {.lex_state = 251, .external_lex_state = 42}, - [3211] = {.lex_state = 250, .external_lex_state = 37}, - [3212] = {.lex_state = 242, .external_lex_state = 51}, - [3213] = {.lex_state = 232, .external_lex_state = 52}, - [3214] = {.lex_state = 248, .external_lex_state = 10}, - [3215] = {.lex_state = 251, .external_lex_state = 42}, - [3216] = {.lex_state = 232, .external_lex_state = 52}, - [3217] = {.lex_state = 248, .external_lex_state = 10}, - [3218] = {.lex_state = 250, .external_lex_state = 37}, - [3219] = {.lex_state = 232, .external_lex_state = 52}, - [3220] = {.lex_state = 232, .external_lex_state = 52}, - [3221] = {.lex_state = 75, .external_lex_state = 36}, - [3222] = {.lex_state = 242, .external_lex_state = 51}, - [3223] = {.lex_state = 232, .external_lex_state = 52}, - [3224] = {.lex_state = 75, .external_lex_state = 36}, - [3225] = {.lex_state = 75, .external_lex_state = 36}, - [3226] = {.lex_state = 75, .external_lex_state = 36}, - [3227] = {.lex_state = 242, .external_lex_state = 51}, - [3228] = {.lex_state = 232, .external_lex_state = 52}, - [3229] = {.lex_state = 242, .external_lex_state = 51}, - [3230] = {.lex_state = 242, .external_lex_state = 51}, - [3231] = {.lex_state = 242, .external_lex_state = 51}, - [3232] = {.lex_state = 232, .external_lex_state = 52}, - [3233] = {.lex_state = 75, .external_lex_state = 49}, - [3234] = {.lex_state = 75, .external_lex_state = 48}, - [3235] = {.lex_state = 242, .external_lex_state = 51}, - [3236] = {.lex_state = 75, .external_lex_state = 48}, - [3237] = {.lex_state = 232, .external_lex_state = 52}, - [3238] = {.lex_state = 250, .external_lex_state = 37}, - [3239] = {.lex_state = 232, .external_lex_state = 53}, - [3240] = {.lex_state = 232, .external_lex_state = 52}, - [3241] = {.lex_state = 250, .external_lex_state = 37}, - [3242] = {.lex_state = 232, .external_lex_state = 52}, - [3243] = {.lex_state = 232, .external_lex_state = 52}, - [3244] = {.lex_state = 232, .external_lex_state = 52}, - [3245] = {.lex_state = 242, .external_lex_state = 51}, - [3246] = {.lex_state = 232, .external_lex_state = 52}, - [3247] = {.lex_state = 232, .external_lex_state = 52}, - [3248] = {.lex_state = 232, .external_lex_state = 52}, - [3249] = {.lex_state = 232, .external_lex_state = 52}, - [3250] = {.lex_state = 250, .external_lex_state = 37}, - [3251] = {.lex_state = 250, .external_lex_state = 37}, - [3252] = {.lex_state = 232, .external_lex_state = 52}, - [3253] = {.lex_state = 250, .external_lex_state = 37}, - [3254] = {.lex_state = 250, .external_lex_state = 37}, - [3255] = {.lex_state = 232, .external_lex_state = 52}, - [3256] = {.lex_state = 250, .external_lex_state = 37}, - [3257] = {.lex_state = 232, .external_lex_state = 52}, - [3258] = {.lex_state = 232, .external_lex_state = 52}, - [3259] = {.lex_state = 232, .external_lex_state = 52}, - [3260] = {.lex_state = 260, .external_lex_state = 54}, - [3261] = {.lex_state = 232, .external_lex_state = 52}, - [3262] = {.lex_state = 75, .external_lex_state = 34}, - [3263] = {.lex_state = 232, .external_lex_state = 52}, - [3264] = {.lex_state = 232, .external_lex_state = 52}, - [3265] = {.lex_state = 251, .external_lex_state = 42}, - [3266] = {.lex_state = 232, .external_lex_state = 52}, - [3267] = {.lex_state = 250, .external_lex_state = 37}, - [3268] = {.lex_state = 232, .external_lex_state = 52}, - [3269] = {.lex_state = 75, .external_lex_state = 36}, - [3270] = {.lex_state = 232, .external_lex_state = 52}, - [3271] = {.lex_state = 232, .external_lex_state = 52}, - [3272] = {.lex_state = 232, .external_lex_state = 52}, - [3273] = {.lex_state = 232, .external_lex_state = 52}, - [3274] = {.lex_state = 232, .external_lex_state = 52}, - [3275] = {.lex_state = 235, .external_lex_state = 55}, - [3276] = {.lex_state = 240, .external_lex_state = 37}, - [3277] = {.lex_state = 235, .external_lex_state = 55}, - [3278] = {.lex_state = 235, .external_lex_state = 55}, - [3279] = {.lex_state = 235, .external_lex_state = 55}, - [3280] = {.lex_state = 235, .external_lex_state = 55}, - [3281] = {.lex_state = 235, .external_lex_state = 55}, - [3282] = {.lex_state = 240, .external_lex_state = 37}, - [3283] = {.lex_state = 235, .external_lex_state = 55}, - [3284] = {.lex_state = 235, .external_lex_state = 55}, - [3285] = {.lex_state = 240, .external_lex_state = 37}, - [3286] = {.lex_state = 260, .external_lex_state = 54}, - [3287] = {.lex_state = 240, .external_lex_state = 37}, - [3288] = {.lex_state = 235, .external_lex_state = 55}, - [3289] = {.lex_state = 251, .external_lex_state = 44}, - [3290] = {.lex_state = 240, .external_lex_state = 37}, - [3291] = {.lex_state = 235, .external_lex_state = 55}, - [3292] = {.lex_state = 240, .external_lex_state = 37}, - [3293] = {.lex_state = 235, .external_lex_state = 55}, - [3294] = {.lex_state = 75, .external_lex_state = 49}, - [3295] = {.lex_state = 235, .external_lex_state = 55}, - [3296] = {.lex_state = 235, .external_lex_state = 55}, - [3297] = {.lex_state = 235, .external_lex_state = 55}, - [3298] = {.lex_state = 235, .external_lex_state = 55}, - [3299] = {.lex_state = 240, .external_lex_state = 37}, - [3300] = {.lex_state = 240, .external_lex_state = 37}, - [3301] = {.lex_state = 235, .external_lex_state = 55}, - [3302] = {.lex_state = 251, .external_lex_state = 47}, - [3303] = {.lex_state = 240, .external_lex_state = 37}, - [3304] = {.lex_state = 240, .external_lex_state = 37}, - [3305] = {.lex_state = 235, .external_lex_state = 55}, - [3306] = {.lex_state = 240, .external_lex_state = 37}, - [3307] = {.lex_state = 235, .external_lex_state = 55}, - [3308] = {.lex_state = 235, .external_lex_state = 55}, - [3309] = {.lex_state = 235, .external_lex_state = 55}, - [3310] = {.lex_state = 240, .external_lex_state = 37}, - [3311] = {.lex_state = 235, .external_lex_state = 55}, - [3312] = {.lex_state = 235, .external_lex_state = 55}, - [3313] = {.lex_state = 240, .external_lex_state = 37}, - [3314] = {.lex_state = 240, .external_lex_state = 37}, - [3315] = {.lex_state = 235, .external_lex_state = 55}, - [3316] = {.lex_state = 240, .external_lex_state = 37}, - [3317] = {.lex_state = 235, .external_lex_state = 55}, - [3318] = {.lex_state = 240, .external_lex_state = 37}, - [3319] = {.lex_state = 240, .external_lex_state = 37}, - [3320] = {.lex_state = 240, .external_lex_state = 37}, - [3321] = {.lex_state = 235, .external_lex_state = 55}, - [3322] = {.lex_state = 235, .external_lex_state = 55}, - [3323] = {.lex_state = 235, .external_lex_state = 55}, - [3324] = {.lex_state = 235, .external_lex_state = 55}, - [3325] = {.lex_state = 235, .external_lex_state = 55}, - [3326] = {.lex_state = 235, .external_lex_state = 55}, - [3327] = {.lex_state = 235, .external_lex_state = 55}, - [3328] = {.lex_state = 240, .external_lex_state = 37}, - [3329] = {.lex_state = 235, .external_lex_state = 55}, - [3330] = {.lex_state = 75, .external_lex_state = 49}, - [3331] = {.lex_state = 235, .external_lex_state = 55}, - [3332] = {.lex_state = 260, .external_lex_state = 54}, - [3333] = {.lex_state = 235, .external_lex_state = 55}, - [3334] = {.lex_state = 260, .external_lex_state = 54}, - [3335] = {.lex_state = 235, .external_lex_state = 55}, - [3336] = {.lex_state = 240, .external_lex_state = 37}, - [3337] = {.lex_state = 240, .external_lex_state = 37}, - [3338] = {.lex_state = 235, .external_lex_state = 55}, - [3339] = {.lex_state = 235, .external_lex_state = 55}, - [3340] = {.lex_state = 235, .external_lex_state = 55}, - [3341] = {.lex_state = 235, .external_lex_state = 55}, - [3342] = {.lex_state = 235, .external_lex_state = 55}, - [3343] = {.lex_state = 235, .external_lex_state = 55}, - [3344] = {.lex_state = 240, .external_lex_state = 37}, - [3345] = {.lex_state = 251, .external_lex_state = 47}, - [3346] = {.lex_state = 240, .external_lex_state = 37}, - [3347] = {.lex_state = 235, .external_lex_state = 55}, - [3348] = {.lex_state = 235, .external_lex_state = 55}, - [3349] = {.lex_state = 235, .external_lex_state = 55}, - [3350] = {.lex_state = 235, .external_lex_state = 55}, - [3351] = {.lex_state = 235, .external_lex_state = 55}, - [3352] = {.lex_state = 235, .external_lex_state = 55}, - [3353] = {.lex_state = 235, .external_lex_state = 55}, - [3354] = {.lex_state = 235, .external_lex_state = 55}, - [3355] = {.lex_state = 240, .external_lex_state = 30}, - [3356] = {.lex_state = 235, .external_lex_state = 55}, - [3357] = {.lex_state = 235, .external_lex_state = 55}, - [3358] = {.lex_state = 235, .external_lex_state = 55}, - [3359] = {.lex_state = 235, .external_lex_state = 55}, - [3360] = {.lex_state = 251, .external_lex_state = 47}, - [3361] = {.lex_state = 235, .external_lex_state = 55}, - [3362] = {.lex_state = 240, .external_lex_state = 37}, - [3363] = {.lex_state = 240, .external_lex_state = 37}, - [3364] = {.lex_state = 232, .external_lex_state = 56}, - [3365] = {.lex_state = 240, .external_lex_state = 37}, - [3366] = {.lex_state = 235, .external_lex_state = 55}, - [3367] = {.lex_state = 235, .external_lex_state = 55}, - [3368] = {.lex_state = 251, .external_lex_state = 47}, - [3369] = {.lex_state = 235, .external_lex_state = 55}, - [3370] = {.lex_state = 251, .external_lex_state = 47}, - [3371] = {.lex_state = 75, .external_lex_state = 49}, - [3372] = {.lex_state = 235, .external_lex_state = 55}, - [3373] = {.lex_state = 240, .external_lex_state = 37}, - [3374] = {.lex_state = 240, .external_lex_state = 37}, - [3375] = {.lex_state = 235, .external_lex_state = 55}, - [3376] = {.lex_state = 235, .external_lex_state = 55}, - [3377] = {.lex_state = 235, .external_lex_state = 55}, - [3378] = {.lex_state = 235, .external_lex_state = 55}, - [3379] = {.lex_state = 240, .external_lex_state = 37}, - [3380] = {.lex_state = 235, .external_lex_state = 55}, - [3381] = {.lex_state = 235, .external_lex_state = 55}, - [3382] = {.lex_state = 260, .external_lex_state = 54}, - [3383] = {.lex_state = 260, .external_lex_state = 54}, - [3384] = {.lex_state = 235, .external_lex_state = 55}, - [3385] = {.lex_state = 240, .external_lex_state = 37}, - [3386] = {.lex_state = 75, .external_lex_state = 49}, - [3387] = {.lex_state = 240, .external_lex_state = 37}, - [3388] = {.lex_state = 240, .external_lex_state = 37}, - [3389] = {.lex_state = 235, .external_lex_state = 55}, - [3390] = {.lex_state = 235, .external_lex_state = 55}, - [3391] = {.lex_state = 240, .external_lex_state = 37}, - [3392] = {.lex_state = 235, .external_lex_state = 55}, - [3393] = {.lex_state = 235, .external_lex_state = 55}, - [3394] = {.lex_state = 235, .external_lex_state = 55}, - [3395] = {.lex_state = 235, .external_lex_state = 55}, - [3396] = {.lex_state = 240, .external_lex_state = 37}, - [3397] = {.lex_state = 240, .external_lex_state = 37}, - [3398] = {.lex_state = 240, .external_lex_state = 37}, - [3399] = {.lex_state = 240, .external_lex_state = 37}, - [3400] = {.lex_state = 240, .external_lex_state = 37}, - [3401] = {.lex_state = 235, .external_lex_state = 55}, - [3402] = {.lex_state = 235, .external_lex_state = 55}, - [3403] = {.lex_state = 235, .external_lex_state = 55}, - [3404] = {.lex_state = 240, .external_lex_state = 37}, - [3405] = {.lex_state = 235, .external_lex_state = 55}, - [3406] = {.lex_state = 251, .external_lex_state = 44}, - [3407] = {.lex_state = 240, .external_lex_state = 37}, - [3408] = {.lex_state = 240, .external_lex_state = 37}, - [3409] = {.lex_state = 235, .external_lex_state = 55}, - [3410] = {.lex_state = 248, .external_lex_state = 10}, - [3411] = {.lex_state = 235, .external_lex_state = 55}, - [3412] = {.lex_state = 232, .external_lex_state = 53}, - [3413] = {.lex_state = 235, .external_lex_state = 55}, - [3414] = {.lex_state = 235, .external_lex_state = 55}, - [3415] = {.lex_state = 240, .external_lex_state = 37}, - [3416] = {.lex_state = 260, .external_lex_state = 54}, - [3417] = {.lex_state = 240, .external_lex_state = 37}, - [3418] = {.lex_state = 260, .external_lex_state = 54}, - [3419] = {.lex_state = 235, .external_lex_state = 55}, - [3420] = {.lex_state = 248, .external_lex_state = 10}, - [3421] = {.lex_state = 235, .external_lex_state = 55}, - [3422] = {.lex_state = 235, .external_lex_state = 55}, - [3423] = {.lex_state = 232, .external_lex_state = 53}, - [3424] = {.lex_state = 235, .external_lex_state = 55}, - [3425] = {.lex_state = 235, .external_lex_state = 55}, - [3426] = {.lex_state = 240, .external_lex_state = 37}, - [3427] = {.lex_state = 235, .external_lex_state = 55}, - [3428] = {.lex_state = 235, .external_lex_state = 55}, - [3429] = {.lex_state = 240, .external_lex_state = 37}, - [3430] = {.lex_state = 232, .external_lex_state = 53}, - [3431] = {.lex_state = 235, .external_lex_state = 55}, - [3432] = {.lex_state = 240, .external_lex_state = 30}, - [3433] = {.lex_state = 75, .external_lex_state = 49}, - [3434] = {.lex_state = 235, .external_lex_state = 55}, - [3435] = {.lex_state = 235, .external_lex_state = 55}, - [3436] = {.lex_state = 75, .external_lex_state = 49}, - [3437] = {.lex_state = 240, .external_lex_state = 37}, - [3438] = {.lex_state = 235, .external_lex_state = 55}, - [3439] = {.lex_state = 235, .external_lex_state = 55}, - [3440] = {.lex_state = 235, .external_lex_state = 55}, - [3441] = {.lex_state = 240, .external_lex_state = 37}, - [3442] = {.lex_state = 240, .external_lex_state = 37}, - [3443] = {.lex_state = 232, .external_lex_state = 53}, - [3444] = {.lex_state = 235, .external_lex_state = 55}, - [3445] = {.lex_state = 235, .external_lex_state = 55}, - [3446] = {.lex_state = 235, .external_lex_state = 55}, - [3447] = {.lex_state = 240, .external_lex_state = 37}, - [3448] = {.lex_state = 240, .external_lex_state = 37}, - [3449] = {.lex_state = 240, .external_lex_state = 37}, - [3450] = {.lex_state = 235, .external_lex_state = 55}, - [3451] = {.lex_state = 251, .external_lex_state = 47}, - [3452] = {.lex_state = 235, .external_lex_state = 55}, - [3453] = {.lex_state = 235, .external_lex_state = 55}, - [3454] = {.lex_state = 235, .external_lex_state = 55}, - [3455] = {.lex_state = 240, .external_lex_state = 37}, - [3456] = {.lex_state = 235, .external_lex_state = 55}, - [3457] = {.lex_state = 240, .external_lex_state = 37}, - [3458] = {.lex_state = 240, .external_lex_state = 37}, - [3459] = {.lex_state = 235, .external_lex_state = 55}, - [3460] = {.lex_state = 240, .external_lex_state = 37}, - [3461] = {.lex_state = 240, .external_lex_state = 37}, - [3462] = {.lex_state = 235, .external_lex_state = 55}, - [3463] = {.lex_state = 240, .external_lex_state = 37}, - [3464] = {.lex_state = 240, .external_lex_state = 37}, - [3465] = {.lex_state = 232, .external_lex_state = 53}, - [3466] = {.lex_state = 235, .external_lex_state = 55}, - [3467] = {.lex_state = 235, .external_lex_state = 55}, - [3468] = {.lex_state = 240, .external_lex_state = 37}, - [3469] = {.lex_state = 235, .external_lex_state = 55}, - [3470] = {.lex_state = 235, .external_lex_state = 55}, - [3471] = {.lex_state = 248, .external_lex_state = 10}, - [3472] = {.lex_state = 235, .external_lex_state = 55}, - [3473] = {.lex_state = 240, .external_lex_state = 37}, - [3474] = {.lex_state = 235, .external_lex_state = 55}, - [3475] = {.lex_state = 240, .external_lex_state = 37}, - [3476] = {.lex_state = 235, .external_lex_state = 55}, - [3477] = {.lex_state = 235, .external_lex_state = 55}, - [3478] = {.lex_state = 240, .external_lex_state = 37}, - [3479] = {.lex_state = 235, .external_lex_state = 55}, - [3480] = {.lex_state = 240, .external_lex_state = 37}, - [3481] = {.lex_state = 235, .external_lex_state = 55}, - [3482] = {.lex_state = 240, .external_lex_state = 37}, - [3483] = {.lex_state = 232, .external_lex_state = 53}, - [3484] = {.lex_state = 232, .external_lex_state = 53}, - [3485] = {.lex_state = 251, .external_lex_state = 42}, - [3486] = {.lex_state = 260, .external_lex_state = 54}, - [3487] = {.lex_state = 75, .external_lex_state = 36}, - [3488] = {.lex_state = 75, .external_lex_state = 36}, - [3489] = {.lex_state = 260, .external_lex_state = 54}, - [3490] = {.lex_state = 232, .external_lex_state = 56}, - [3491] = {.lex_state = 260, .external_lex_state = 54}, - [3492] = {.lex_state = 232, .external_lex_state = 56}, - [3493] = {.lex_state = 260, .external_lex_state = 54}, - [3494] = {.lex_state = 232, .external_lex_state = 56}, - [3495] = {.lex_state = 232, .external_lex_state = 56}, - [3496] = {.lex_state = 260, .external_lex_state = 54}, - [3497] = {.lex_state = 232, .external_lex_state = 44}, - [3498] = {.lex_state = 232, .external_lex_state = 53}, - [3499] = {.lex_state = 232, .external_lex_state = 56}, - [3500] = {.lex_state = 260, .external_lex_state = 54}, - [3501] = {.lex_state = 232, .external_lex_state = 56}, - [3502] = {.lex_state = 251, .external_lex_state = 42}, - [3503] = {.lex_state = 240, .external_lex_state = 30}, - [3504] = {.lex_state = 260, .external_lex_state = 54}, - [3505] = {.lex_state = 232, .external_lex_state = 53}, - [3506] = {.lex_state = 260, .external_lex_state = 54}, - [3507] = {.lex_state = 251, .external_lex_state = 42}, - [3508] = {.lex_state = 260, .external_lex_state = 54}, - [3509] = {.lex_state = 232, .external_lex_state = 53}, - [3510] = {.lex_state = 232, .external_lex_state = 56}, - [3511] = {.lex_state = 232, .external_lex_state = 44}, - [3512] = {.lex_state = 260, .external_lex_state = 54}, - [3513] = {.lex_state = 232, .external_lex_state = 53}, - [3514] = {.lex_state = 232, .external_lex_state = 53}, - [3515] = {.lex_state = 232, .external_lex_state = 53}, - [3516] = {.lex_state = 251, .external_lex_state = 42}, - [3517] = {.lex_state = 260, .external_lex_state = 54}, - [3518] = {.lex_state = 260, .external_lex_state = 54}, - [3519] = {.lex_state = 260, .external_lex_state = 54}, - [3520] = {.lex_state = 232, .external_lex_state = 53}, - [3521] = {.lex_state = 232, .external_lex_state = 53}, - [3522] = {.lex_state = 260, .external_lex_state = 54}, - [3523] = {.lex_state = 260, .external_lex_state = 54}, - [3524] = {.lex_state = 232, .external_lex_state = 53}, - [3525] = {.lex_state = 232, .external_lex_state = 53}, - [3526] = {.lex_state = 232, .external_lex_state = 53}, - [3527] = {.lex_state = 232, .external_lex_state = 53}, - [3528] = {.lex_state = 232, .external_lex_state = 53}, - [3529] = {.lex_state = 260, .external_lex_state = 54}, - [3530] = {.lex_state = 232, .external_lex_state = 53}, - [3531] = {.lex_state = 232, .external_lex_state = 53}, - [3532] = {.lex_state = 232, .external_lex_state = 53}, - [3533] = {.lex_state = 251, .external_lex_state = 42}, - [3534] = {.lex_state = 260, .external_lex_state = 54}, - [3535] = {.lex_state = 260, .external_lex_state = 54}, - [3536] = {.lex_state = 232, .external_lex_state = 53}, - [3537] = {.lex_state = 260, .external_lex_state = 54}, - [3538] = {.lex_state = 260, .external_lex_state = 54}, - [3539] = {.lex_state = 232, .external_lex_state = 53}, - [3540] = {.lex_state = 232, .external_lex_state = 56}, - [3541] = {.lex_state = 232, .external_lex_state = 56}, - [3542] = {.lex_state = 232, .external_lex_state = 56}, - [3543] = {.lex_state = 232, .external_lex_state = 56}, - [3544] = {.lex_state = 232, .external_lex_state = 56}, - [3545] = {.lex_state = 232, .external_lex_state = 56}, - [3546] = {.lex_state = 232, .external_lex_state = 47}, - [3547] = {.lex_state = 163, .external_lex_state = 45}, - [3548] = {.lex_state = 232, .external_lex_state = 56}, - [3549] = {.lex_state = 232, .external_lex_state = 56}, - [3550] = {.lex_state = 232, .external_lex_state = 56}, - [3551] = {.lex_state = 232, .external_lex_state = 47}, - [3552] = {.lex_state = 232, .external_lex_state = 56}, - [3553] = {.lex_state = 251, .external_lex_state = 42}, - [3554] = {.lex_state = 163, .external_lex_state = 45}, - [3555] = {.lex_state = 232, .external_lex_state = 56}, - [3556] = {.lex_state = 232, .external_lex_state = 56}, - [3557] = {.lex_state = 232, .external_lex_state = 56}, - [3558] = {.lex_state = 251, .external_lex_state = 47}, - [3559] = {.lex_state = 232, .external_lex_state = 44}, - [3560] = {.lex_state = 232, .external_lex_state = 47}, - [3561] = {.lex_state = 75, .external_lex_state = 36}, - [3562] = {.lex_state = 232, .external_lex_state = 56}, - [3563] = {.lex_state = 232, .external_lex_state = 56}, - [3564] = {.lex_state = 232, .external_lex_state = 56}, - [3565] = {.lex_state = 232, .external_lex_state = 56}, - [3566] = {.lex_state = 75, .external_lex_state = 36}, - [3567] = {.lex_state = 75, .external_lex_state = 36}, - [3568] = {.lex_state = 251, .external_lex_state = 47}, - [3569] = {.lex_state = 232, .external_lex_state = 56}, - [3570] = {.lex_state = 232, .external_lex_state = 56}, - [3571] = {.lex_state = 232, .external_lex_state = 56}, - [3572] = {.lex_state = 251, .external_lex_state = 44}, - [3573] = {.lex_state = 235, .external_lex_state = 55}, - [3574] = {.lex_state = 251, .external_lex_state = 44}, - [3575] = {.lex_state = 251, .external_lex_state = 42}, - [3576] = {.lex_state = 251, .external_lex_state = 47}, - [3577] = {.lex_state = 251, .external_lex_state = 42}, - [3578] = {.lex_state = 251, .external_lex_state = 44}, - [3579] = {.lex_state = 251, .external_lex_state = 42}, - [3580] = {.lex_state = 232, .external_lex_state = 47}, - [3581] = {.lex_state = 251, .external_lex_state = 42}, - [3582] = {.lex_state = 251, .external_lex_state = 47}, - [3583] = {.lex_state = 251, .external_lex_state = 42}, - [3584] = {.lex_state = 251, .external_lex_state = 42}, - [3585] = {.lex_state = 251, .external_lex_state = 42}, - [3586] = {.lex_state = 251, .external_lex_state = 47}, - [3587] = {.lex_state = 251, .external_lex_state = 42}, - [3588] = {.lex_state = 251, .external_lex_state = 47}, - [3589] = {.lex_state = 251, .external_lex_state = 47}, - [3590] = {.lex_state = 251, .external_lex_state = 47}, - [3591] = {.lex_state = 251, .external_lex_state = 47}, - [3592] = {.lex_state = 251, .external_lex_state = 47}, - [3593] = {.lex_state = 251, .external_lex_state = 47}, - [3594] = {.lex_state = 251, .external_lex_state = 47}, - [3595] = {.lex_state = 251, .external_lex_state = 47}, - [3596] = {.lex_state = 251, .external_lex_state = 47}, - [3597] = {.lex_state = 251, .external_lex_state = 47}, - [3598] = {.lex_state = 251, .external_lex_state = 47}, - [3599] = {.lex_state = 251, .external_lex_state = 47}, - [3600] = {.lex_state = 251, .external_lex_state = 47}, - [3601] = {.lex_state = 251, .external_lex_state = 47}, - [3602] = {.lex_state = 251, .external_lex_state = 47}, - [3603] = {.lex_state = 251, .external_lex_state = 47}, - [3604] = {.lex_state = 251, .external_lex_state = 47}, - [3605] = {.lex_state = 251, .external_lex_state = 47}, - [3606] = {.lex_state = 251, .external_lex_state = 47}, - [3607] = {.lex_state = 251, .external_lex_state = 47}, - [3608] = {.lex_state = 251, .external_lex_state = 47}, - [3609] = {.lex_state = 251, .external_lex_state = 47}, - [3610] = {.lex_state = 251, .external_lex_state = 47}, - [3611] = {.lex_state = 251, .external_lex_state = 47}, - [3612] = {.lex_state = 251, .external_lex_state = 47}, - [3613] = {.lex_state = 251, .external_lex_state = 47}, - [3614] = {.lex_state = 251, .external_lex_state = 47}, - [3615] = {.lex_state = 251, .external_lex_state = 47}, - [3616] = {.lex_state = 251, .external_lex_state = 47}, - [3617] = {.lex_state = 251, .external_lex_state = 47}, - [3618] = {.lex_state = 251, .external_lex_state = 47}, - [3619] = {.lex_state = 251, .external_lex_state = 47}, - [3620] = {.lex_state = 251, .external_lex_state = 47}, - [3621] = {.lex_state = 251, .external_lex_state = 47}, - [3622] = {.lex_state = 251, .external_lex_state = 47}, - [3623] = {.lex_state = 251, .external_lex_state = 47}, - [3624] = {.lex_state = 251, .external_lex_state = 47}, - [3625] = {.lex_state = 251, .external_lex_state = 47}, - [3626] = {.lex_state = 251, .external_lex_state = 47}, - [3627] = {.lex_state = 251, .external_lex_state = 47}, - [3628] = {.lex_state = 251, .external_lex_state = 47}, - [3629] = {.lex_state = 251, .external_lex_state = 47}, - [3630] = {.lex_state = 251, .external_lex_state = 47}, - [3631] = {.lex_state = 228}, - [3632] = {.lex_state = 228}, - [3633] = {.lex_state = 229, .external_lex_state = 57}, - [3634] = {.lex_state = 229, .external_lex_state = 57}, - [3635] = {.lex_state = 257}, - [3636] = {.lex_state = 257}, - [3637] = {.lex_state = 257}, - [3638] = {.lex_state = 257}, - [3639] = {.lex_state = 257}, - [3640] = {.lex_state = 257}, - [3641] = {.lex_state = 257}, - [3642] = {.lex_state = 257}, - [3643] = {.lex_state = 257}, - [3644] = {.lex_state = 257}, - [3645] = {.lex_state = 257}, - [3646] = {.lex_state = 257}, - [3647] = {.lex_state = 257}, - [3648] = {.lex_state = 257}, - [3649] = {.lex_state = 257}, - [3650] = {.lex_state = 257}, - [3651] = {.lex_state = 257}, - [3652] = {.lex_state = 257}, - [3653] = {.lex_state = 257}, - [3654] = {.lex_state = 257}, - [3655] = {.lex_state = 257}, - [3656] = {.lex_state = 257}, - [3657] = {.lex_state = 257}, - [3658] = {.lex_state = 257}, - [3659] = {.lex_state = 257}, - [3660] = {.lex_state = 257}, - [3661] = {.lex_state = 257}, - [3662] = {.lex_state = 257}, - [3663] = {.lex_state = 257}, - [3664] = {.lex_state = 257}, - [3665] = {.lex_state = 257}, - [3666] = {.lex_state = 257}, - [3667] = {.lex_state = 257}, - [3668] = {.lex_state = 257}, - [3669] = {.lex_state = 257}, - [3670] = {.lex_state = 257}, - [3671] = {.lex_state = 257}, - [3672] = {.lex_state = 257}, - [3673] = {.lex_state = 257}, - [3674] = {.lex_state = 257}, - [3675] = {.lex_state = 257}, - [3676] = {.lex_state = 257}, - [3677] = {.lex_state = 257}, - [3678] = {.lex_state = 257}, - [3679] = {.lex_state = 257}, - [3680] = {.lex_state = 257}, - [3681] = {.lex_state = 257}, - [3682] = {.lex_state = 257}, - [3683] = {.lex_state = 257}, - [3684] = {.lex_state = 257}, - [3685] = {.lex_state = 257}, - [3686] = {.lex_state = 257}, - [3687] = {.lex_state = 257}, - [3688] = {.lex_state = 257}, - [3689] = {.lex_state = 257}, - [3690] = {.lex_state = 74, .external_lex_state = 58}, - [3691] = {.lex_state = 74, .external_lex_state = 58}, - [3692] = {.lex_state = 257}, - [3693] = {.lex_state = 257}, - [3694] = {.lex_state = 257}, - [3695] = {.lex_state = 257}, - [3696] = {.lex_state = 257}, - [3697] = {.lex_state = 74, .external_lex_state = 58}, - [3698] = {.lex_state = 257}, - [3699] = {.lex_state = 257}, - [3700] = {.lex_state = 257}, - [3701] = {.lex_state = 257}, - [3702] = {.lex_state = 257}, - [3703] = {.lex_state = 257}, - [3704] = {.lex_state = 257}, - [3705] = {.lex_state = 257}, - [3706] = {.lex_state = 257}, - [3707] = {.lex_state = 257}, - [3708] = {.lex_state = 257}, - [3709] = {.lex_state = 74, .external_lex_state = 58}, - [3710] = {.lex_state = 257}, - [3711] = {.lex_state = 257}, - [3712] = {.lex_state = 257}, - [3713] = {.lex_state = 257}, - [3714] = {.lex_state = 257}, - [3715] = {.lex_state = 257}, - [3716] = {.lex_state = 74, .external_lex_state = 58}, - [3717] = {.lex_state = 257}, - [3718] = {.lex_state = 257}, - [3719] = {.lex_state = 257}, - [3720] = {.lex_state = 74, .external_lex_state = 58}, - [3721] = {.lex_state = 257}, - [3722] = {.lex_state = 257}, - [3723] = {.lex_state = 257}, - [3724] = {.lex_state = 257}, - [3725] = {.lex_state = 257}, - [3726] = {.lex_state = 257}, - [3727] = {.lex_state = 257}, - [3728] = {.lex_state = 257}, - [3729] = {.lex_state = 257}, - [3730] = {.lex_state = 257}, - [3731] = {.lex_state = 257}, - [3732] = {.lex_state = 257}, - [3733] = {.lex_state = 257}, - [3734] = {.lex_state = 257}, - [3735] = {.lex_state = 257}, - [3736] = {.lex_state = 257}, - [3737] = {.lex_state = 257}, - [3738] = {.lex_state = 257}, - [3739] = {.lex_state = 257}, - [3740] = {.lex_state = 257}, - [3741] = {.lex_state = 257}, - [3742] = {.lex_state = 74, .external_lex_state = 58}, - [3743] = {.lex_state = 257}, - [3744] = {.lex_state = 257}, - [3745] = {.lex_state = 257}, - [3746] = {.lex_state = 257}, - [3747] = {.lex_state = 74, .external_lex_state = 58}, - [3748] = {.lex_state = 230}, - [3749] = {.lex_state = 230}, - [3750] = {.lex_state = 231}, - [3751] = {.lex_state = 230}, - [3752] = {.lex_state = 230}, - [3753] = {.lex_state = 231}, - [3754] = {.lex_state = 230}, - [3755] = {.lex_state = 231}, - [3756] = {.lex_state = 231}, - [3757] = {.lex_state = 230}, - [3758] = {.lex_state = 230}, - [3759] = {.lex_state = 230}, - [3760] = {.lex_state = 231}, - [3761] = {.lex_state = 231}, - [3762] = {.lex_state = 231}, - [3763] = {.lex_state = 230}, - [3764] = {.lex_state = 230}, - [3765] = {.lex_state = 230}, - [3766] = {.lex_state = 230}, - [3767] = {.lex_state = 230}, - [3768] = {.lex_state = 230}, - [3769] = {.lex_state = 230}, - [3770] = {.lex_state = 230}, - [3771] = {.lex_state = 230}, - [3772] = {.lex_state = 231}, - [3773] = {.lex_state = 230}, - [3774] = {.lex_state = 231}, - [3775] = {.lex_state = 231}, - [3776] = {.lex_state = 230}, - [3777] = {.lex_state = 230}, - [3778] = {.lex_state = 230}, - [3779] = {.lex_state = 230}, - [3780] = {.lex_state = 230}, - [3781] = {.lex_state = 231}, - [3782] = {.lex_state = 231}, - [3783] = {.lex_state = 230}, - [3784] = {.lex_state = 230}, - [3785] = {.lex_state = 230}, - [3786] = {.lex_state = 230}, - [3787] = {.lex_state = 230}, - [3788] = {.lex_state = 230}, - [3789] = {.lex_state = 230}, - [3790] = {.lex_state = 230}, - [3791] = {.lex_state = 230}, - [3792] = {.lex_state = 230}, - [3793] = {.lex_state = 230}, - [3794] = {.lex_state = 231}, - [3795] = {.lex_state = 230}, - [3796] = {.lex_state = 231}, - [3797] = {.lex_state = 230}, - [3798] = {.lex_state = 231}, - [3799] = {.lex_state = 230}, - [3800] = {.lex_state = 230}, - [3801] = {.lex_state = 230}, - [3802] = {.lex_state = 231}, - [3803] = {.lex_state = 230}, - [3804] = {.lex_state = 230}, - [3805] = {.lex_state = 230}, - [3806] = {.lex_state = 230}, - [3807] = {.lex_state = 230}, - [3808] = {.lex_state = 231}, - [3809] = {.lex_state = 230}, - [3810] = {.lex_state = 230}, - [3811] = {.lex_state = 231}, - [3812] = {.lex_state = 230}, - [3813] = {.lex_state = 231}, - [3814] = {.lex_state = 230}, - [3815] = {.lex_state = 230}, - [3816] = {.lex_state = 231}, - [3817] = {.lex_state = 230}, - [3818] = {.lex_state = 230}, - [3819] = {.lex_state = 230}, - [3820] = {.lex_state = 230}, - [3821] = {.lex_state = 230}, - [3822] = {.lex_state = 231}, - [3823] = {.lex_state = 230}, - [3824] = {.lex_state = 231}, - [3825] = {.lex_state = 231}, - [3826] = {.lex_state = 230}, - [3827] = {.lex_state = 231}, - [3828] = {.lex_state = 230}, - [3829] = {.lex_state = 230}, - [3830] = {.lex_state = 231}, - [3831] = {.lex_state = 230}, - [3832] = {.lex_state = 231}, - [3833] = {.lex_state = 230}, - [3834] = {.lex_state = 230}, - [3835] = {.lex_state = 230}, - [3836] = {.lex_state = 231}, - [3837] = {.lex_state = 230}, - [3838] = {.lex_state = 231}, - [3839] = {.lex_state = 230}, - [3840] = {.lex_state = 230}, - [3841] = {.lex_state = 230}, - [3842] = {.lex_state = 230}, - [3843] = {.lex_state = 230}, - [3844] = {.lex_state = 231}, - [3845] = {.lex_state = 230}, - [3846] = {.lex_state = 231}, - [3847] = {.lex_state = 230}, - [3848] = {.lex_state = 230}, - [3849] = {.lex_state = 231}, - [3850] = {.lex_state = 230}, - [3851] = {.lex_state = 231}, - [3852] = {.lex_state = 231}, - [3853] = {.lex_state = 230}, - [3854] = {.lex_state = 231}, - [3855] = {.lex_state = 230}, - [3856] = {.lex_state = 230}, - [3857] = {.lex_state = 230}, - [3858] = {.lex_state = 231}, - [3859] = {.lex_state = 230}, - [3860] = {.lex_state = 230}, - [3861] = {.lex_state = 231}, - [3862] = {.lex_state = 231}, - [3863] = {.lex_state = 230}, - [3864] = {.lex_state = 230}, - [3865] = {.lex_state = 230}, - [3866] = {.lex_state = 231}, - [3867] = {.lex_state = 231}, - [3868] = {.lex_state = 230}, - [3869] = {.lex_state = 230}, - [3870] = {.lex_state = 231}, - [3871] = {.lex_state = 230}, - [3872] = {.lex_state = 230}, - [3873] = {.lex_state = 230}, - [3874] = {.lex_state = 230}, - [3875] = {.lex_state = 230}, - [3876] = {.lex_state = 230}, - [3877] = {.lex_state = 231}, - [3878] = {.lex_state = 231}, - [3879] = {.lex_state = 230}, - [3880] = {.lex_state = 230}, - [3881] = {.lex_state = 230}, - [3882] = {.lex_state = 230}, - [3883] = {.lex_state = 230}, - [3884] = {.lex_state = 230}, - [3885] = {.lex_state = 230}, - [3886] = {.lex_state = 230}, - [3887] = {.lex_state = 231}, - [3888] = {.lex_state = 231}, - [3889] = {.lex_state = 231}, - [3890] = {.lex_state = 230}, - [3891] = {.lex_state = 230}, - [3892] = {.lex_state = 231}, - [3893] = {.lex_state = 230}, - [3894] = {.lex_state = 230}, - [3895] = {.lex_state = 230}, - [3896] = {.lex_state = 231}, - [3897] = {.lex_state = 231}, - [3898] = {.lex_state = 230}, - [3899] = {.lex_state = 230}, - [3900] = {.lex_state = 233}, - [3901] = {.lex_state = 251, .external_lex_state = 59}, - [3902] = {.lex_state = 216, .external_lex_state = 60}, - [3903] = {.lex_state = 234}, - [3904] = {.lex_state = 251, .external_lex_state = 59}, - [3905] = {.lex_state = 251, .external_lex_state = 59}, - [3906] = {.lex_state = 234}, - [3907] = {.lex_state = 216, .external_lex_state = 60}, - [3908] = {.lex_state = 216, .external_lex_state = 60}, - [3909] = {.lex_state = 251, .external_lex_state = 59}, - [3910] = {.lex_state = 251, .external_lex_state = 59}, - [3911] = {.lex_state = 234}, - [3912] = {.lex_state = 251, .external_lex_state = 59}, - [3913] = {.lex_state = 251, .external_lex_state = 59}, - [3914] = {.lex_state = 234}, - [3915] = {.lex_state = 234}, - [3916] = {.lex_state = 251, .external_lex_state = 59}, - [3917] = {.lex_state = 234}, - [3918] = {.lex_state = 251, .external_lex_state = 59}, - [3919] = {.lex_state = 260}, - [3920] = {.lex_state = 257, .external_lex_state = 61}, - [3921] = {.lex_state = 257, .external_lex_state = 61}, - [3922] = {.lex_state = 257, .external_lex_state = 61}, - [3923] = {.lex_state = 260}, - [3924] = {.lex_state = 257, .external_lex_state = 61}, - [3925] = {.lex_state = 257, .external_lex_state = 61}, - [3926] = {.lex_state = 425, .external_lex_state = 45}, - [3927] = {.lex_state = 257, .external_lex_state = 61}, - [3928] = {.lex_state = 257, .external_lex_state = 61}, - [3929] = {.lex_state = 257, .external_lex_state = 61}, - [3930] = {.lex_state = 257, .external_lex_state = 61}, - [3931] = {.lex_state = 257, .external_lex_state = 61}, - [3932] = {.lex_state = 257, .external_lex_state = 61}, - [3933] = {.lex_state = 257, .external_lex_state = 61}, - [3934] = {.lex_state = 257}, - [3935] = {.lex_state = 257}, - [3936] = {.lex_state = 74, .external_lex_state = 62}, - [3937] = {.lex_state = 76, .external_lex_state = 63}, - [3938] = {.lex_state = 74, .external_lex_state = 62}, - [3939] = {.lex_state = 259}, - [3940] = {.lex_state = 259}, - [3941] = {.lex_state = 259}, - [3942] = {.lex_state = 76, .external_lex_state = 63}, - [3943] = {.lex_state = 76, .external_lex_state = 63}, - [3944] = {.lex_state = 259}, - [3945] = {.lex_state = 259}, - [3946] = {.lex_state = 76, .external_lex_state = 63}, - [3947] = {.lex_state = 259}, - [3948] = {.lex_state = 259}, - [3949] = {.lex_state = 259}, - [3950] = {.lex_state = 259}, - [3951] = {.lex_state = 76, .external_lex_state = 63}, - [3952] = {.lex_state = 76, .external_lex_state = 63}, - [3953] = {.lex_state = 259}, - [3954] = {.lex_state = 76, .external_lex_state = 63}, - [3955] = {.lex_state = 259}, - [3956] = {.lex_state = 76, .external_lex_state = 63}, - [3957] = {.lex_state = 259}, - [3958] = {.lex_state = 76, .external_lex_state = 63}, - [3959] = {.lex_state = 76, .external_lex_state = 63}, - [3960] = {.lex_state = 259}, - [3961] = {.lex_state = 259}, - [3962] = {.lex_state = 259}, - [3963] = {.lex_state = 259}, - [3964] = {.lex_state = 259}, - [3965] = {.lex_state = 259}, - [3966] = {.lex_state = 259}, - [3967] = {.lex_state = 76, .external_lex_state = 63}, - [3968] = {.lex_state = 224}, - [3969] = {.lex_state = 76, .external_lex_state = 45}, - [3970] = {.lex_state = 76, .external_lex_state = 63}, - [3971] = {.lex_state = 224}, - [3972] = {.lex_state = 224}, - [3973] = {.lex_state = 216, .external_lex_state = 60}, - [3974] = {.lex_state = 76, .external_lex_state = 63}, - [3975] = {.lex_state = 76, .external_lex_state = 63}, - [3976] = {.lex_state = 224}, - [3977] = {.lex_state = 224}, - [3978] = {.lex_state = 216, .external_lex_state = 60}, - [3979] = {.lex_state = 76, .external_lex_state = 63}, - [3980] = {.lex_state = 76, .external_lex_state = 63}, - [3981] = {.lex_state = 224}, - [3982] = {.lex_state = 76, .external_lex_state = 63}, - [3983] = {.lex_state = 76, .external_lex_state = 63}, - [3984] = {.lex_state = 224}, - [3985] = {.lex_state = 216, .external_lex_state = 60}, - [3986] = {.lex_state = 216, .external_lex_state = 60}, - [3987] = {.lex_state = 224}, - [3988] = {.lex_state = 224}, - [3989] = {.lex_state = 76, .external_lex_state = 63}, - [3990] = {.lex_state = 76, .external_lex_state = 63}, - [3991] = {.lex_state = 76, .external_lex_state = 63}, - [3992] = {.lex_state = 224}, - [3993] = {.lex_state = 76, .external_lex_state = 63}, - [3994] = {.lex_state = 216, .external_lex_state = 60}, - [3995] = {.lex_state = 76, .external_lex_state = 45}, - [3996] = {.lex_state = 76, .external_lex_state = 63}, - [3997] = {.lex_state = 224}, - [3998] = {.lex_state = 76, .external_lex_state = 63}, - [3999] = {.lex_state = 76, .external_lex_state = 63}, - [4000] = {.lex_state = 224}, - [4001] = {.lex_state = 76, .external_lex_state = 63}, - [4002] = {.lex_state = 224}, - [4003] = {.lex_state = 216, .external_lex_state = 60}, - [4004] = {.lex_state = 224}, - [4005] = {.lex_state = 216, .external_lex_state = 60}, - [4006] = {.lex_state = 76, .external_lex_state = 63}, - [4007] = {.lex_state = 224}, - [4008] = {.lex_state = 224}, - [4009] = {.lex_state = 76, .external_lex_state = 45}, - [4010] = {.lex_state = 76, .external_lex_state = 63}, - [4011] = {.lex_state = 224}, - [4012] = {.lex_state = 224}, - [4013] = {.lex_state = 224}, - [4014] = {.lex_state = 76, .external_lex_state = 45}, - [4015] = {.lex_state = 224}, - [4016] = {.lex_state = 224}, - [4017] = {.lex_state = 216, .external_lex_state = 60}, - [4018] = {.lex_state = 224}, - [4019] = {.lex_state = 76, .external_lex_state = 63}, - [4020] = {.lex_state = 224}, - [4021] = {.lex_state = 76, .external_lex_state = 63}, - [4022] = {.lex_state = 224}, - [4023] = {.lex_state = 260}, - [4024] = {.lex_state = 260}, - [4025] = {.lex_state = 239, .external_lex_state = 61}, - [4026] = {.lex_state = 260}, - [4027] = {.lex_state = 239, .external_lex_state = 61}, - [4028] = {.lex_state = 260}, - [4029] = {.lex_state = 73, .external_lex_state = 45}, - [4030] = {.lex_state = 239, .external_lex_state = 61}, - [4031] = {.lex_state = 239, .external_lex_state = 61}, - [4032] = {.lex_state = 73, .external_lex_state = 45}, - [4033] = {.lex_state = 73, .external_lex_state = 45}, - [4034] = {.lex_state = 76, .external_lex_state = 45}, - [4035] = {.lex_state = 239, .external_lex_state = 61}, - [4036] = {.lex_state = 259, .external_lex_state = 64}, - [4037] = {.lex_state = 73, .external_lex_state = 45}, - [4038] = {.lex_state = 73, .external_lex_state = 45}, - [4039] = {.lex_state = 239, .external_lex_state = 61}, - [4040] = {.lex_state = 260}, - [4041] = {.lex_state = 73, .external_lex_state = 45}, - [4042] = {.lex_state = 239, .external_lex_state = 61}, - [4043] = {.lex_state = 260}, - [4044] = {.lex_state = 239, .external_lex_state = 61}, - [4045] = {.lex_state = 73, .external_lex_state = 45}, - [4046] = {.lex_state = 239, .external_lex_state = 61}, - [4047] = {.lex_state = 73, .external_lex_state = 45}, - [4048] = {.lex_state = 439, .external_lex_state = 65}, - [4049] = {.lex_state = 439, .external_lex_state = 65}, - [4050] = {.lex_state = 439, .external_lex_state = 65}, - [4051] = {.lex_state = 262}, - [4052] = {.lex_state = 439, .external_lex_state = 65}, - [4053] = {.lex_state = 259, .external_lex_state = 64}, - [4054] = {.lex_state = 439, .external_lex_state = 66}, - [4055] = {.lex_state = 76, .external_lex_state = 45}, - [4056] = {.lex_state = 439, .external_lex_state = 65}, - [4057] = {.lex_state = 238}, - [4058] = {.lex_state = 439, .external_lex_state = 65}, - [4059] = {.lex_state = 76, .external_lex_state = 45}, - [4060] = {.lex_state = 439, .external_lex_state = 65}, - [4061] = {.lex_state = 259, .external_lex_state = 64}, - [4062] = {.lex_state = 239, .external_lex_state = 61}, - [4063] = {.lex_state = 259, .external_lex_state = 64}, - [4064] = {.lex_state = 76, .external_lex_state = 45}, - [4065] = {.lex_state = 239, .external_lex_state = 61}, - [4066] = {.lex_state = 439, .external_lex_state = 66}, - [4067] = {.lex_state = 439, .external_lex_state = 65}, - [4068] = {.lex_state = 439, .external_lex_state = 65}, - [4069] = {.lex_state = 439, .external_lex_state = 65}, - [4070] = {.lex_state = 439, .external_lex_state = 65}, - [4071] = {.lex_state = 238}, - [4072] = {.lex_state = 260}, - [4073] = {.lex_state = 73, .external_lex_state = 45}, - [4074] = {.lex_state = 259, .external_lex_state = 64}, - [4075] = {.lex_state = 262}, - [4076] = {.lex_state = 238}, - [4077] = {.lex_state = 439, .external_lex_state = 65}, - [4078] = {.lex_state = 439, .external_lex_state = 65}, - [4079] = {.lex_state = 239, .external_lex_state = 61}, - [4080] = {.lex_state = 259, .external_lex_state = 64}, - [4081] = {.lex_state = 76, .external_lex_state = 45}, - [4082] = {.lex_state = 439, .external_lex_state = 65}, - [4083] = {.lex_state = 238}, - [4084] = {.lex_state = 439, .external_lex_state = 65}, - [4085] = {.lex_state = 259, .external_lex_state = 64}, - [4086] = {.lex_state = 76, .external_lex_state = 45}, - [4087] = {.lex_state = 76, .external_lex_state = 45}, - [4088] = {.lex_state = 259, .external_lex_state = 64}, - [4089] = {.lex_state = 239, .external_lex_state = 61}, - [4090] = {.lex_state = 262}, - [4091] = {.lex_state = 239, .external_lex_state = 61}, - [4092] = {.lex_state = 439, .external_lex_state = 65}, - [4093] = {.lex_state = 259, .external_lex_state = 64}, - [4094] = {.lex_state = 239, .external_lex_state = 61}, - [4095] = {.lex_state = 218}, - [4096] = {.lex_state = 218}, - [4097] = {.lex_state = 239, .external_lex_state = 61}, - [4098] = {.lex_state = 259, .external_lex_state = 64}, - [4099] = {.lex_state = 218}, - [4100] = {.lex_state = 218}, - [4101] = {.lex_state = 218}, - [4102] = {.lex_state = 259, .external_lex_state = 64}, - [4103] = {.lex_state = 239, .external_lex_state = 61}, - [4104] = {.lex_state = 262}, - [4105] = {.lex_state = 259, .external_lex_state = 64}, - [4106] = {.lex_state = 218}, - [4107] = {.lex_state = 259, .external_lex_state = 57}, - [4108] = {.lex_state = 239, .external_lex_state = 61}, - [4109] = {.lex_state = 218}, - [4110] = {.lex_state = 239, .external_lex_state = 61}, - [4111] = {.lex_state = 239, .external_lex_state = 61}, - [4112] = {.lex_state = 259, .external_lex_state = 64}, - [4113] = {.lex_state = 218}, - [4114] = {.lex_state = 239, .external_lex_state = 61}, - [4115] = {.lex_state = 239, .external_lex_state = 61}, - [4116] = {.lex_state = 259, .external_lex_state = 64}, - [4117] = {.lex_state = 259, .external_lex_state = 64}, - [4118] = {.lex_state = 259, .external_lex_state = 64}, - [4119] = {.lex_state = 259, .external_lex_state = 57}, - [4120] = {.lex_state = 259, .external_lex_state = 64}, - [4121] = {.lex_state = 259, .external_lex_state = 64}, - [4122] = {.lex_state = 239, .external_lex_state = 61}, - [4123] = {.lex_state = 259, .external_lex_state = 64}, - [4124] = {.lex_state = 239, .external_lex_state = 61}, - [4125] = {.lex_state = 259, .external_lex_state = 64}, - [4126] = {.lex_state = 73, .external_lex_state = 45}, - [4127] = {.lex_state = 259, .external_lex_state = 64}, - [4128] = {.lex_state = 239, .external_lex_state = 61}, - [4129] = {.lex_state = 262}, - [4130] = {.lex_state = 238}, - [4131] = {.lex_state = 259, .external_lex_state = 64}, - [4132] = {.lex_state = 239, .external_lex_state = 61}, - [4133] = {.lex_state = 239, .external_lex_state = 61}, - [4134] = {.lex_state = 73, .external_lex_state = 45}, - [4135] = {.lex_state = 218}, - [4136] = {.lex_state = 239, .external_lex_state = 61}, - [4137] = {.lex_state = 239, .external_lex_state = 61}, - [4138] = {.lex_state = 259, .external_lex_state = 64}, - [4139] = {.lex_state = 259, .external_lex_state = 64}, - [4140] = {.lex_state = 238}, - [4141] = {.lex_state = 239, .external_lex_state = 61}, - [4142] = {.lex_state = 218}, - [4143] = {.lex_state = 259, .external_lex_state = 64}, - [4144] = {.lex_state = 259, .external_lex_state = 64}, - [4145] = {.lex_state = 259, .external_lex_state = 64}, - [4146] = {.lex_state = 218}, - [4147] = {.lex_state = 218}, - [4148] = {.lex_state = 239, .external_lex_state = 61}, - [4149] = {.lex_state = 259, .external_lex_state = 64}, - [4150] = {.lex_state = 262}, - [4151] = {.lex_state = 239, .external_lex_state = 61}, - [4152] = {.lex_state = 239, .external_lex_state = 61}, - [4153] = {.lex_state = 239, .external_lex_state = 61}, - [4154] = {.lex_state = 259, .external_lex_state = 57}, - [4155] = {.lex_state = 217}, - [4156] = {.lex_state = 217}, - [4157] = {.lex_state = 439}, - [4158] = {.lex_state = 218}, - [4159] = {.lex_state = 218}, - [4160] = {.lex_state = 218}, - [4161] = {.lex_state = 261}, - [4162] = {.lex_state = 251, .external_lex_state = 61}, - [4163] = {.lex_state = 261}, - [4164] = {.lex_state = 261}, - [4165] = {.lex_state = 218}, - [4166] = {.lex_state = 218}, - [4167] = {.lex_state = 217}, - [4168] = {.lex_state = 261}, - [4169] = {.lex_state = 439}, - [4170] = {.lex_state = 218}, - [4171] = {.lex_state = 261}, - [4172] = {.lex_state = 439}, - [4173] = {.lex_state = 218}, - [4174] = {.lex_state = 217}, - [4175] = {.lex_state = 261}, - [4176] = {.lex_state = 218}, - [4177] = {.lex_state = 439}, - [4178] = {.lex_state = 218}, - [4179] = {.lex_state = 218}, - [4180] = {.lex_state = 261}, - [4181] = {.lex_state = 439}, - [4182] = {.lex_state = 261}, - [4183] = {.lex_state = 439}, - [4184] = {.lex_state = 261}, - [4185] = {.lex_state = 218}, - [4186] = {.lex_state = 261}, - [4187] = {.lex_state = 439}, - [4188] = {.lex_state = 218}, - [4189] = {.lex_state = 218}, - [4190] = {.lex_state = 218}, - [4191] = {.lex_state = 439}, - [4192] = {.lex_state = 217}, - [4193] = {.lex_state = 218}, - [4194] = {.lex_state = 261}, - [4195] = {.lex_state = 218}, - [4196] = {.lex_state = 261}, - [4197] = {.lex_state = 261}, - [4198] = {.lex_state = 218}, - [4199] = {.lex_state = 238}, - [4200] = {.lex_state = 261}, - [4201] = {.lex_state = 261}, - [4202] = {.lex_state = 218}, - [4203] = {.lex_state = 261}, - [4204] = {.lex_state = 218}, - [4205] = {.lex_state = 218}, - [4206] = {.lex_state = 218}, - [4207] = {.lex_state = 218}, - [4208] = {.lex_state = 218}, - [4209] = {.lex_state = 218}, - [4210] = {.lex_state = 439}, - [4211] = {.lex_state = 439}, - [4212] = {.lex_state = 218}, - [4213] = {.lex_state = 261}, - [4214] = {.lex_state = 218}, - [4215] = {.lex_state = 439}, - [4216] = {.lex_state = 261}, - [4217] = {.lex_state = 218}, - [4218] = {.lex_state = 218}, - [4219] = {.lex_state = 218}, - [4220] = {.lex_state = 439}, - [4221] = {.lex_state = 439}, - [4222] = {.lex_state = 218}, - [4223] = {.lex_state = 251, .external_lex_state = 61}, - [4224] = {.lex_state = 218}, - [4225] = {.lex_state = 218}, - [4226] = {.lex_state = 439}, - [4227] = {.lex_state = 261}, - [4228] = {.lex_state = 218}, - [4229] = {.lex_state = 439}, - [4230] = {.lex_state = 218}, - [4231] = {.lex_state = 217}, - [4232] = {.lex_state = 218}, - [4233] = {.lex_state = 218}, - [4234] = {.lex_state = 218}, - [4235] = {.lex_state = 218}, - [4236] = {.lex_state = 218}, - [4237] = {.lex_state = 261}, - [4238] = {.lex_state = 218}, - [4239] = {.lex_state = 218}, - [4240] = {.lex_state = 439}, - [4241] = {.lex_state = 218}, - [4242] = {.lex_state = 439}, - [4243] = {.lex_state = 439}, - [4244] = {.lex_state = 439}, - [4245] = {.lex_state = 251, .external_lex_state = 61}, - [4246] = {.lex_state = 218}, - [4247] = {.lex_state = 218}, - [4248] = {.lex_state = 259, .external_lex_state = 57}, - [4249] = {.lex_state = 218}, - [4250] = {.lex_state = 218}, - [4251] = {.lex_state = 218}, - [4252] = {.lex_state = 218}, - [4253] = {.lex_state = 218}, - [4254] = {.lex_state = 439}, - [4255] = {.lex_state = 218}, - [4256] = {.lex_state = 218}, - [4257] = {.lex_state = 439}, - [4258] = {.lex_state = 261}, - [4259] = {.lex_state = 439}, - [4260] = {.lex_state = 218}, - [4261] = {.lex_state = 439}, - [4262] = {.lex_state = 439}, - [4263] = {.lex_state = 218}, - [4264] = {.lex_state = 439}, - [4265] = {.lex_state = 439}, - [4266] = {.lex_state = 218}, - [4267] = {.lex_state = 218}, - [4268] = {.lex_state = 218}, - [4269] = {.lex_state = 439}, - [4270] = {.lex_state = 218}, - [4271] = {.lex_state = 251, .external_lex_state = 61}, - [4272] = {.lex_state = 218}, - [4273] = {.lex_state = 218}, - [4274] = {.lex_state = 218}, - [4275] = {.lex_state = 439}, - [4276] = {.lex_state = 218}, - [4277] = {.lex_state = 218}, - [4278] = {.lex_state = 217}, - [4279] = {.lex_state = 218}, - [4280] = {.lex_state = 439}, - [4281] = {.lex_state = 439}, - [4282] = {.lex_state = 218}, - [4283] = {.lex_state = 218}, - [4284] = {.lex_state = 218}, - [4285] = {.lex_state = 439}, - [4286] = {.lex_state = 439}, - [4287] = {.lex_state = 218}, - [4288] = {.lex_state = 261}, - [4289] = {.lex_state = 218}, - [4290] = {.lex_state = 439}, - [4291] = {.lex_state = 218}, - [4292] = {.lex_state = 261}, - [4293] = {.lex_state = 218}, - [4294] = {.lex_state = 439}, - [4295] = {.lex_state = 251}, - [4296] = {.lex_state = 439}, - [4297] = {.lex_state = 217}, - [4298] = {.lex_state = 216, .external_lex_state = 57}, - [4299] = {.lex_state = 216, .external_lex_state = 57}, - [4300] = {.lex_state = 216, .external_lex_state = 57}, - [4301] = {.lex_state = 439}, - [4302] = {.lex_state = 216, .external_lex_state = 57}, - [4303] = {.lex_state = 439}, - [4304] = {.lex_state = 216, .external_lex_state = 57}, - [4305] = {.lex_state = 216, .external_lex_state = 57}, - [4306] = {.lex_state = 216, .external_lex_state = 57}, - [4307] = {.lex_state = 251}, - [4308] = {.lex_state = 216, .external_lex_state = 57}, - [4309] = {.lex_state = 439}, - [4310] = {.lex_state = 439}, - [4311] = {.lex_state = 251}, - [4312] = {.lex_state = 439}, - [4313] = {.lex_state = 439}, - [4314] = {.lex_state = 439}, - [4315] = {.lex_state = 439}, - [4316] = {.lex_state = 439}, - [4317] = {.lex_state = 251}, - [4318] = {.lex_state = 439}, - [4319] = {.lex_state = 439}, - [4320] = {.lex_state = 217}, - [4321] = {.lex_state = 251}, - [4322] = {.lex_state = 259, .external_lex_state = 57}, - [4323] = {.lex_state = 439}, - [4324] = {.lex_state = 439}, - [4325] = {.lex_state = 439}, - [4326] = {.lex_state = 439}, - [4327] = {.lex_state = 259, .external_lex_state = 57}, - [4328] = {.lex_state = 439}, - [4329] = {.lex_state = 439}, - [4330] = {.lex_state = 439}, - [4331] = {.lex_state = 439}, - [4332] = {.lex_state = 439}, - [4333] = {.lex_state = 217}, - [4334] = {.lex_state = 439}, - [4335] = {.lex_state = 217}, - [4336] = {.lex_state = 439}, - [4337] = {.lex_state = 439}, - [4338] = {.lex_state = 439}, - [4339] = {.lex_state = 439}, - [4340] = {.lex_state = 217}, - [4341] = {.lex_state = 439}, - [4342] = {.lex_state = 251}, - [4343] = {.lex_state = 251}, - [4344] = {.lex_state = 439}, - [4345] = {.lex_state = 439}, - [4346] = {.lex_state = 439}, - [4347] = {.lex_state = 439}, - [4348] = {.lex_state = 218}, - [4349] = {.lex_state = 218}, - [4350] = {.lex_state = 439}, - [4351] = {.lex_state = 260}, - [4352] = {.lex_state = 260}, - [4353] = {.lex_state = 439}, - [4354] = {.lex_state = 439}, - [4355] = {.lex_state = 439}, - [4356] = {.lex_state = 260}, - [4357] = {.lex_state = 439}, - [4358] = {.lex_state = 251}, - [4359] = {.lex_state = 251}, - [4360] = {.lex_state = 251}, - [4361] = {.lex_state = 439}, - [4362] = {.lex_state = 439}, - [4363] = {.lex_state = 251}, - [4364] = {.lex_state = 251}, - [4365] = {.lex_state = 439}, - [4366] = {.lex_state = 251}, - [4367] = {.lex_state = 251}, - [4368] = {.lex_state = 439}, - [4369] = {.lex_state = 251}, - [4370] = {.lex_state = 251}, - [4371] = {.lex_state = 439}, - [4372] = {.lex_state = 251}, - [4373] = {.lex_state = 251}, - [4374] = {.lex_state = 259, .external_lex_state = 57}, - [4375] = {.lex_state = 439}, - [4376] = {.lex_state = 251}, - [4377] = {.lex_state = 439}, - [4378] = {.lex_state = 439}, - [4379] = {.lex_state = 251}, - [4380] = {.lex_state = 216, .external_lex_state = 57}, - [4381] = {.lex_state = 439}, - [4382] = {.lex_state = 251}, - [4383] = {.lex_state = 251}, - [4384] = {.lex_state = 259, .external_lex_state = 57}, - [4385] = {.lex_state = 439}, - [4386] = {.lex_state = 251}, - [4387] = {.lex_state = 251}, - [4388] = {.lex_state = 260}, - [4389] = {.lex_state = 439}, - [4390] = {.lex_state = 260}, - [4391] = {.lex_state = 251}, - [4392] = {.lex_state = 439}, - [4393] = {.lex_state = 439}, - [4394] = {.lex_state = 251}, - [4395] = {.lex_state = 439}, - [4396] = {.lex_state = 251}, - [4397] = {.lex_state = 439}, - [4398] = {.lex_state = 216, .external_lex_state = 57}, - [4399] = {.lex_state = 439}, - [4400] = {.lex_state = 439}, - [4401] = {.lex_state = 260}, - [4402] = {.lex_state = 439}, - [4403] = {.lex_state = 221}, - [4404] = {.lex_state = 218}, - [4405] = {.lex_state = 72, .external_lex_state = 45}, - [4406] = {.lex_state = 216, .external_lex_state = 57}, - [4407] = {.lex_state = 72, .external_lex_state = 45}, - [4408] = {.lex_state = 439}, - [4409] = {.lex_state = 439}, - [4410] = {.lex_state = 218}, - [4411] = {.lex_state = 218}, - [4412] = {.lex_state = 260}, - [4413] = {.lex_state = 439}, - [4414] = {.lex_state = 439, .external_lex_state = 67}, - [4415] = {.lex_state = 439, .external_lex_state = 67}, - [4416] = {.lex_state = 439}, - [4417] = {.lex_state = 216, .external_lex_state = 57}, - [4418] = {.lex_state = 216, .external_lex_state = 57}, - [4419] = {.lex_state = 218}, - [4420] = {.lex_state = 260}, - [4421] = {.lex_state = 439}, - [4422] = {.lex_state = 218}, - [4423] = {.lex_state = 439}, - [4424] = {.lex_state = 216, .external_lex_state = 57}, - [4425] = {.lex_state = 260}, - [4426] = {.lex_state = 216, .external_lex_state = 57}, - [4427] = {.lex_state = 218}, - [4428] = {.lex_state = 439}, - [4429] = {.lex_state = 221}, - [4430] = {.lex_state = 216, .external_lex_state = 57}, - [4431] = {.lex_state = 218}, - [4432] = {.lex_state = 216, .external_lex_state = 57}, - [4433] = {.lex_state = 439}, - [4434] = {.lex_state = 218}, - [4435] = {.lex_state = 218}, - [4436] = {.lex_state = 439}, - [4437] = {.lex_state = 260}, - [4438] = {.lex_state = 216, .external_lex_state = 57}, - [4439] = {.lex_state = 439}, - [4440] = {.lex_state = 216, .external_lex_state = 57}, - [4441] = {.lex_state = 216, .external_lex_state = 57}, - [4442] = {.lex_state = 218}, - [4443] = {.lex_state = 221}, - [4444] = {.lex_state = 195, .external_lex_state = 68}, - [4445] = {.lex_state = 216, .external_lex_state = 57}, - [4446] = {.lex_state = 439}, - [4447] = {.lex_state = 439}, - [4448] = {.lex_state = 439}, - [4449] = {.lex_state = 439}, - [4450] = {.lex_state = 218}, - [4451] = {.lex_state = 216, .external_lex_state = 57}, - [4452] = {.lex_state = 216, .external_lex_state = 57}, - [4453] = {.lex_state = 195, .external_lex_state = 68}, - [4454] = {.lex_state = 216, .external_lex_state = 57}, - [4455] = {.lex_state = 216, .external_lex_state = 57}, - [4456] = {.lex_state = 439}, - [4457] = {.lex_state = 439}, - [4458] = {.lex_state = 216, .external_lex_state = 57}, - [4459] = {.lex_state = 439}, - [4460] = {.lex_state = 218}, - [4461] = {.lex_state = 439}, - [4462] = {.lex_state = 439}, - [4463] = {.lex_state = 216, .external_lex_state = 57}, - [4464] = {.lex_state = 216, .external_lex_state = 57}, - [4465] = {.lex_state = 439}, - [4466] = {.lex_state = 439}, - [4467] = {.lex_state = 218}, - [4468] = {.lex_state = 439}, - [4469] = {.lex_state = 216, .external_lex_state = 57}, - [4470] = {.lex_state = 218}, - [4471] = {.lex_state = 439}, - [4472] = {.lex_state = 439}, - [4473] = {.lex_state = 439}, - [4474] = {.lex_state = 216, .external_lex_state = 57}, - [4475] = {.lex_state = 216, .external_lex_state = 57}, - [4476] = {.lex_state = 439}, - [4477] = {.lex_state = 216, .external_lex_state = 57}, - [4478] = {.lex_state = 216, .external_lex_state = 57}, - [4479] = {.lex_state = 216, .external_lex_state = 57}, - [4480] = {.lex_state = 218}, - [4481] = {.lex_state = 221}, - [4482] = {.lex_state = 216, .external_lex_state = 57}, - [4483] = {.lex_state = 260}, - [4484] = {.lex_state = 439}, - [4485] = {.lex_state = 439}, - [4486] = {.lex_state = 439}, - [4487] = {.lex_state = 439}, - [4488] = {.lex_state = 216, .external_lex_state = 57}, - [4489] = {.lex_state = 218}, - [4490] = {.lex_state = 439}, - [4491] = {.lex_state = 439}, - [4492] = {.lex_state = 439}, - [4493] = {.lex_state = 221}, - [4494] = {.lex_state = 221}, - [4495] = {.lex_state = 195, .external_lex_state = 68}, - [4496] = {.lex_state = 195, .external_lex_state = 68}, - [4497] = {.lex_state = 439}, - [4498] = {.lex_state = 218}, - [4499] = {.lex_state = 216, .external_lex_state = 57}, - [4500] = {.lex_state = 439}, - [4501] = {.lex_state = 439}, - [4502] = {.lex_state = 221}, - [4503] = {.lex_state = 216, .external_lex_state = 57}, - [4504] = {.lex_state = 216, .external_lex_state = 57}, - [4505] = {.lex_state = 439}, - [4506] = {.lex_state = 260}, - [4507] = {.lex_state = 218}, - [4508] = {.lex_state = 439}, - [4509] = {.lex_state = 439}, - [4510] = {.lex_state = 439}, - [4511] = {.lex_state = 439}, - [4512] = {.lex_state = 216, .external_lex_state = 57}, - [4513] = {.lex_state = 216, .external_lex_state = 57}, - [4514] = {.lex_state = 221}, - [4515] = {.lex_state = 216, .external_lex_state = 57}, - [4516] = {.lex_state = 218}, - [4517] = {.lex_state = 216, .external_lex_state = 57}, - [4518] = {.lex_state = 439}, - [4519] = {.lex_state = 72, .external_lex_state = 45}, - [4520] = {.lex_state = 439}, - [4521] = {.lex_state = 439}, - [4522] = {.lex_state = 439}, - [4523] = {.lex_state = 439}, - [4524] = {.lex_state = 216, .external_lex_state = 57}, - [4525] = {.lex_state = 218}, - [4526] = {.lex_state = 216, .external_lex_state = 57}, - [4527] = {.lex_state = 439}, - [4528] = {.lex_state = 439}, - [4529] = {.lex_state = 439}, - [4530] = {.lex_state = 439}, - [4531] = {.lex_state = 216, .external_lex_state = 57}, - [4532] = {.lex_state = 195, .external_lex_state = 68}, - [4533] = {.lex_state = 195, .external_lex_state = 68}, - [4534] = {.lex_state = 218}, - [4535] = {.lex_state = 439}, - [4536] = {.lex_state = 221}, - [4537] = {.lex_state = 216, .external_lex_state = 57}, - [4538] = {.lex_state = 439}, - [4539] = {.lex_state = 439}, - [4540] = {.lex_state = 439}, - [4541] = {.lex_state = 439, .external_lex_state = 69}, - [4542] = {.lex_state = 221}, - [4543] = {.lex_state = 218}, - [4544] = {.lex_state = 439}, - [4545] = {.lex_state = 439}, - [4546] = {.lex_state = 260}, - [4547] = {.lex_state = 216, .external_lex_state = 57}, - [4548] = {.lex_state = 216, .external_lex_state = 57}, - [4549] = {.lex_state = 439, .external_lex_state = 67}, - [4550] = {.lex_state = 221}, - [4551] = {.lex_state = 221}, - [4552] = {.lex_state = 218}, - [4553] = {.lex_state = 221}, - [4554] = {.lex_state = 216, .external_lex_state = 57}, - [4555] = {.lex_state = 439}, - [4556] = {.lex_state = 216, .external_lex_state = 57}, - [4557] = {.lex_state = 439}, - [4558] = {.lex_state = 439}, - [4559] = {.lex_state = 439}, - [4560] = {.lex_state = 218}, - [4561] = {.lex_state = 439}, - [4562] = {.lex_state = 216, .external_lex_state = 57}, - [4563] = {.lex_state = 216, .external_lex_state = 57}, - [4564] = {.lex_state = 439, .external_lex_state = 67}, - [4565] = {.lex_state = 216, .external_lex_state = 57}, - [4566] = {.lex_state = 221}, - [4567] = {.lex_state = 218}, - [4568] = {.lex_state = 218}, - [4569] = {.lex_state = 216, .external_lex_state = 57}, - [4570] = {.lex_state = 439}, - [4571] = {.lex_state = 218}, - [4572] = {.lex_state = 218}, - [4573] = {.lex_state = 439}, - [4574] = {.lex_state = 439}, - [4575] = {.lex_state = 194}, - [4576] = {.lex_state = 218}, - [4577] = {.lex_state = 216, .external_lex_state = 57}, - [4578] = {.lex_state = 218}, - [4579] = {.lex_state = 439, .external_lex_state = 70}, - [4580] = {.lex_state = 218}, - [4581] = {.lex_state = 439, .external_lex_state = 66}, - [4582] = {.lex_state = 439}, - [4583] = {.lex_state = 218}, - [4584] = {.lex_state = 218}, - [4585] = {.lex_state = 260}, - [4586] = {.lex_state = 439}, - [4587] = {.lex_state = 216, .external_lex_state = 57}, - [4588] = {.lex_state = 439, .external_lex_state = 70}, - [4589] = {.lex_state = 439}, - [4590] = {.lex_state = 218}, - [4591] = {.lex_state = 439, .external_lex_state = 67}, - [4592] = {.lex_state = 439, .external_lex_state = 66}, - [4593] = {.lex_state = 439, .external_lex_state = 67}, - [4594] = {.lex_state = 439}, - [4595] = {.lex_state = 439}, - [4596] = {.lex_state = 218}, - [4597] = {.lex_state = 439}, - [4598] = {.lex_state = 221}, - [4599] = {.lex_state = 216, .external_lex_state = 57}, - [4600] = {.lex_state = 218}, - [4601] = {.lex_state = 218}, - [4602] = {.lex_state = 218}, - [4603] = {.lex_state = 439}, - [4604] = {.lex_state = 260}, - [4605] = {.lex_state = 439}, - [4606] = {.lex_state = 439}, - [4607] = {.lex_state = 439}, - [4608] = {.lex_state = 218}, - [4609] = {.lex_state = 439}, - [4610] = {.lex_state = 216, .external_lex_state = 57}, - [4611] = {.lex_state = 216, .external_lex_state = 57}, - [4612] = {.lex_state = 218}, - [4613] = {.lex_state = 221}, - [4614] = {.lex_state = 218}, - [4615] = {.lex_state = 216, .external_lex_state = 57}, - [4616] = {.lex_state = 439}, - [4617] = {.lex_state = 218}, - [4618] = {.lex_state = 218}, - [4619] = {.lex_state = 439}, - [4620] = {.lex_state = 218}, - [4621] = {.lex_state = 260}, - [4622] = {.lex_state = 218}, - [4623] = {.lex_state = 439}, - [4624] = {.lex_state = 218}, - [4625] = {.lex_state = 216, .external_lex_state = 57}, - [4626] = {.lex_state = 218}, - [4627] = {.lex_state = 439}, - [4628] = {.lex_state = 218}, - [4629] = {.lex_state = 221}, - [4630] = {.lex_state = 195, .external_lex_state = 68}, - [4631] = {.lex_state = 195, .external_lex_state = 68}, - [4632] = {.lex_state = 218}, - [4633] = {.lex_state = 216, .external_lex_state = 57}, - [4634] = {.lex_state = 439}, - [4635] = {.lex_state = 216, .external_lex_state = 57}, - [4636] = {.lex_state = 216, .external_lex_state = 57}, - [4637] = {.lex_state = 221}, - [4638] = {.lex_state = 218}, - [4639] = {.lex_state = 260}, - [4640] = {.lex_state = 260}, - [4641] = {.lex_state = 216, .external_lex_state = 57}, - [4642] = {.lex_state = 439}, - [4643] = {.lex_state = 439}, - [4644] = {.lex_state = 218}, - [4645] = {.lex_state = 439}, - [4646] = {.lex_state = 439}, - [4647] = {.lex_state = 216, .external_lex_state = 57}, - [4648] = {.lex_state = 439}, - [4649] = {.lex_state = 439}, - [4650] = {.lex_state = 218}, - [4651] = {.lex_state = 439}, - [4652] = {.lex_state = 439}, - [4653] = {.lex_state = 439}, - [4654] = {.lex_state = 194}, - [4655] = {.lex_state = 439}, - [4656] = {.lex_state = 218}, - [4657] = {.lex_state = 216, .external_lex_state = 57}, - [4658] = {.lex_state = 439}, - [4659] = {.lex_state = 221}, - [4660] = {.lex_state = 218}, - [4661] = {.lex_state = 216, .external_lex_state = 57}, - [4662] = {.lex_state = 218}, - [4663] = {.lex_state = 439}, - [4664] = {.lex_state = 439}, - [4665] = {.lex_state = 216, .external_lex_state = 57}, - [4666] = {.lex_state = 439}, - [4667] = {.lex_state = 439}, - [4668] = {.lex_state = 218}, - [4669] = {.lex_state = 218}, - [4670] = {.lex_state = 439}, - [4671] = {.lex_state = 216, .external_lex_state = 57}, - [4672] = {.lex_state = 439}, - [4673] = {.lex_state = 72, .external_lex_state = 45}, - [4674] = {.lex_state = 218}, - [4675] = {.lex_state = 216, .external_lex_state = 57}, - [4676] = {.lex_state = 439}, - [4677] = {.lex_state = 439}, - [4678] = {.lex_state = 439}, - [4679] = {.lex_state = 216, .external_lex_state = 57}, - [4680] = {.lex_state = 218}, - [4681] = {.lex_state = 216, .external_lex_state = 57}, - [4682] = {.lex_state = 221}, - [4683] = {.lex_state = 221}, - [4684] = {.lex_state = 221}, - [4685] = {.lex_state = 216, .external_lex_state = 57}, - [4686] = {.lex_state = 218}, - [4687] = {.lex_state = 218}, - [4688] = {.lex_state = 439}, - [4689] = {.lex_state = 439}, - [4690] = {.lex_state = 439}, - [4691] = {.lex_state = 439, .external_lex_state = 69}, - [4692] = {.lex_state = 218}, - [4693] = {.lex_state = 216, .external_lex_state = 57}, - [4694] = {.lex_state = 439}, - [4695] = {.lex_state = 439}, - [4696] = {.lex_state = 216, .external_lex_state = 57}, - [4697] = {.lex_state = 439}, - [4698] = {.lex_state = 218}, - [4699] = {.lex_state = 216, .external_lex_state = 57}, - [4700] = {.lex_state = 439}, - [4701] = {.lex_state = 72, .external_lex_state = 45}, - [4702] = {.lex_state = 439}, - [4703] = {.lex_state = 439}, - [4704] = {.lex_state = 218}, - [4705] = {.lex_state = 216, .external_lex_state = 57}, - [4706] = {.lex_state = 216, .external_lex_state = 57}, - [4707] = {.lex_state = 216, .external_lex_state = 57}, - [4708] = {.lex_state = 221}, - [4709] = {.lex_state = 216, .external_lex_state = 57}, - [4710] = {.lex_state = 218}, - [4711] = {.lex_state = 218}, - [4712] = {.lex_state = 216, .external_lex_state = 57}, - [4713] = {.lex_state = 439}, - [4714] = {.lex_state = 218}, - [4715] = {.lex_state = 439}, - [4716] = {.lex_state = 218}, - [4717] = {.lex_state = 439}, - [4718] = {.lex_state = 439}, - [4719] = {.lex_state = 439}, - [4720] = {.lex_state = 72, .external_lex_state = 45}, - [4721] = {.lex_state = 439, .external_lex_state = 67}, - [4722] = {.lex_state = 216, .external_lex_state = 57}, - [4723] = {.lex_state = 216, .external_lex_state = 57}, - [4724] = {.lex_state = 439, .external_lex_state = 67}, - [4725] = {.lex_state = 439}, - [4726] = {.lex_state = 439}, - [4727] = {.lex_state = 72, .external_lex_state = 45}, - [4728] = {.lex_state = 218}, - [4729] = {.lex_state = 439}, - [4730] = {.lex_state = 216, .external_lex_state = 57}, - [4731] = {.lex_state = 221}, - [4732] = {.lex_state = 216, .external_lex_state = 57}, - [4733] = {.lex_state = 439}, - [4734] = {.lex_state = 218}, - [4735] = {.lex_state = 439}, - [4736] = {.lex_state = 439}, - [4737] = {.lex_state = 439}, - [4738] = {.lex_state = 439}, - [4739] = {.lex_state = 216, .external_lex_state = 57}, - [4740] = {.lex_state = 218}, - [4741] = {.lex_state = 216, .external_lex_state = 57}, - [4742] = {.lex_state = 221}, - [4743] = {.lex_state = 218}, - [4744] = {.lex_state = 439}, - [4745] = {.lex_state = 221}, - [4746] = {.lex_state = 218}, - [4747] = {.lex_state = 216, .external_lex_state = 57}, - [4748] = {.lex_state = 260}, - [4749] = {.lex_state = 439}, - [4750] = {.lex_state = 439}, - [4751] = {.lex_state = 439}, - [4752] = {.lex_state = 72, .external_lex_state = 45}, - [4753] = {.lex_state = 439}, - [4754] = {.lex_state = 439}, - [4755] = {.lex_state = 221}, - [4756] = {.lex_state = 216, .external_lex_state = 57}, - [4757] = {.lex_state = 216, .external_lex_state = 57}, - [4758] = {.lex_state = 439}, - [4759] = {.lex_state = 439}, - [4760] = {.lex_state = 260}, - [4761] = {.lex_state = 216, .external_lex_state = 57}, - [4762] = {.lex_state = 216, .external_lex_state = 57}, - [4763] = {.lex_state = 439}, - [4764] = {.lex_state = 439}, - [4765] = {.lex_state = 439}, - [4766] = {.lex_state = 439}, - [4767] = {.lex_state = 439}, - [4768] = {.lex_state = 217}, - [4769] = {.lex_state = 439}, - [4770] = {.lex_state = 218}, - [4771] = {.lex_state = 218}, - [4772] = {.lex_state = 439}, - [4773] = {.lex_state = 439}, - [4774] = {.lex_state = 216, .external_lex_state = 57}, - [4775] = {.lex_state = 439, .external_lex_state = 69}, - [4776] = {.lex_state = 439}, - [4777] = {.lex_state = 439}, - [4778] = {.lex_state = 221}, - [4779] = {.lex_state = 216, .external_lex_state = 57}, - [4780] = {.lex_state = 216, .external_lex_state = 57}, - [4781] = {.lex_state = 439, .external_lex_state = 69}, - [4782] = {.lex_state = 439}, - [4783] = {.lex_state = 439}, - [4784] = {.lex_state = 439}, - [4785] = {.lex_state = 439}, - [4786] = {.lex_state = 439}, - [4787] = {.lex_state = 221}, - [4788] = {.lex_state = 216, .external_lex_state = 57}, - [4789] = {.lex_state = 221}, - [4790] = {.lex_state = 216, .external_lex_state = 57}, - [4791] = {.lex_state = 221}, - [4792] = {.lex_state = 216, .external_lex_state = 57}, - [4793] = {.lex_state = 439}, - [4794] = {.lex_state = 439}, - [4795] = {.lex_state = 439}, - [4796] = {.lex_state = 439}, - [4797] = {.lex_state = 216, .external_lex_state = 57}, - [4798] = {.lex_state = 216, .external_lex_state = 57}, - [4799] = {.lex_state = 221}, - [4800] = {.lex_state = 439}, - [4801] = {.lex_state = 221}, - [4802] = {.lex_state = 216, .external_lex_state = 57}, - [4803] = {.lex_state = 439}, - [4804] = {.lex_state = 439}, - [4805] = {.lex_state = 439}, - [4806] = {.lex_state = 439}, - [4807] = {.lex_state = 218}, - [4808] = {.lex_state = 439}, - [4809] = {.lex_state = 216, .external_lex_state = 57}, - [4810] = {.lex_state = 439}, - [4811] = {.lex_state = 439}, - [4812] = {.lex_state = 221}, - [4813] = {.lex_state = 216, .external_lex_state = 57}, - [4814] = {.lex_state = 221}, - [4815] = {.lex_state = 216, .external_lex_state = 57}, - [4816] = {.lex_state = 439}, - [4817] = {.lex_state = 439}, - [4818] = {.lex_state = 439}, - [4819] = {.lex_state = 439}, - [4820] = {.lex_state = 216, .external_lex_state = 57}, - [4821] = {.lex_state = 216, .external_lex_state = 57}, - [4822] = {.lex_state = 221}, - [4823] = {.lex_state = 218}, - [4824] = {.lex_state = 221}, - [4825] = {.lex_state = 216, .external_lex_state = 57}, - [4826] = {.lex_state = 439}, - [4827] = {.lex_state = 439}, - [4828] = {.lex_state = 439}, - [4829] = {.lex_state = 216, .external_lex_state = 57}, - [4830] = {.lex_state = 218}, - [4831] = {.lex_state = 439}, - [4832] = {.lex_state = 216, .external_lex_state = 57}, - [4833] = {.lex_state = 194}, - [4834] = {.lex_state = 221}, - [4835] = {.lex_state = 216, .external_lex_state = 57}, - [4836] = {.lex_state = 218}, - [4837] = {.lex_state = 439}, - [4838] = {.lex_state = 439}, - [4839] = {.lex_state = 439}, - [4840] = {.lex_state = 439}, - [4841] = {.lex_state = 216, .external_lex_state = 57}, - [4842] = {.lex_state = 260}, - [4843] = {.lex_state = 439}, - [4844] = {.lex_state = 217}, - [4845] = {.lex_state = 216, .external_lex_state = 57}, - [4846] = {.lex_state = 439}, - [4847] = {.lex_state = 218}, - [4848] = {.lex_state = 216, .external_lex_state = 57}, - [4849] = {.lex_state = 439}, - [4850] = {.lex_state = 439}, - [4851] = {.lex_state = 439, .external_lex_state = 69}, - [4852] = {.lex_state = 439}, - [4853] = {.lex_state = 439}, - [4854] = {.lex_state = 221}, - [4855] = {.lex_state = 216, .external_lex_state = 57}, - [4856] = {.lex_state = 439, .external_lex_state = 69}, - [4857] = {.lex_state = 439}, - [4858] = {.lex_state = 439}, - [4859] = {.lex_state = 439}, - [4860] = {.lex_state = 439}, - [4861] = {.lex_state = 216, .external_lex_state = 57}, - [4862] = {.lex_state = 216, .external_lex_state = 57}, - [4863] = {.lex_state = 221}, - [4864] = {.lex_state = 439}, - [4865] = {.lex_state = 439}, - [4866] = {.lex_state = 218}, - [4867] = {.lex_state = 221}, - [4868] = {.lex_state = 216, .external_lex_state = 57}, - [4869] = {.lex_state = 439}, - [4870] = {.lex_state = 439}, - [4871] = {.lex_state = 439}, - [4872] = {.lex_state = 439}, - [4873] = {.lex_state = 439}, - [4874] = {.lex_state = 439}, - [4875] = {.lex_state = 216, .external_lex_state = 57}, - [4876] = {.lex_state = 439}, - [4877] = {.lex_state = 216, .external_lex_state = 57}, - [4878] = {.lex_state = 216, .external_lex_state = 57}, - [4879] = {.lex_state = 439}, - [4880] = {.lex_state = 221}, - [4881] = {.lex_state = 216, .external_lex_state = 57}, - [4882] = {.lex_state = 439}, - [4883] = {.lex_state = 439}, - [4884] = {.lex_state = 439}, - [4885] = {.lex_state = 439}, - [4886] = {.lex_state = 439}, - [4887] = {.lex_state = 439}, - [4888] = {.lex_state = 216, .external_lex_state = 57}, - [4889] = {.lex_state = 439}, - [4890] = {.lex_state = 221}, - [4891] = {.lex_state = 216, .external_lex_state = 57}, - [4892] = {.lex_state = 221}, - [4893] = {.lex_state = 221}, - [4894] = {.lex_state = 216, .external_lex_state = 57}, - [4895] = {.lex_state = 439}, - [4896] = {.lex_state = 260}, - [4897] = {.lex_state = 439}, - [4898] = {.lex_state = 439}, - [4899] = {.lex_state = 439}, - [4900] = {.lex_state = 216, .external_lex_state = 57}, - [4901] = {.lex_state = 439}, - [4902] = {.lex_state = 218}, - [4903] = {.lex_state = 260}, - [4904] = {.lex_state = 216, .external_lex_state = 57}, - [4905] = {.lex_state = 439, .external_lex_state = 69}, - [4906] = {.lex_state = 216, .external_lex_state = 57}, - [4907] = {.lex_state = 216, .external_lex_state = 57}, - [4908] = {.lex_state = 221}, - [4909] = {.lex_state = 216, .external_lex_state = 57}, - [4910] = {.lex_state = 439, .external_lex_state = 69}, - [4911] = {.lex_state = 439}, - [4912] = {.lex_state = 439}, - [4913] = {.lex_state = 221}, - [4914] = {.lex_state = 216, .external_lex_state = 57}, - [4915] = {.lex_state = 439}, - [4916] = {.lex_state = 216, .external_lex_state = 57}, - [4917] = {.lex_state = 439}, - [4918] = {.lex_state = 439}, - [4919] = {.lex_state = 216, .external_lex_state = 57}, - [4920] = {.lex_state = 218}, - [4921] = {.lex_state = 439}, - [4922] = {.lex_state = 439}, - [4923] = {.lex_state = 439}, - [4924] = {.lex_state = 439}, - [4925] = {.lex_state = 439}, - [4926] = {.lex_state = 221}, - [4927] = {.lex_state = 216, .external_lex_state = 57}, - [4928] = {.lex_state = 260}, - [4929] = {.lex_state = 439}, - [4930] = {.lex_state = 439}, - [4931] = {.lex_state = 439}, - [4932] = {.lex_state = 439}, - [4933] = {.lex_state = 216, .external_lex_state = 57}, - [4934] = {.lex_state = 218}, - [4935] = {.lex_state = 218}, - [4936] = {.lex_state = 218}, - [4937] = {.lex_state = 218}, - [4938] = {.lex_state = 218}, - [4939] = {.lex_state = 218}, - [4940] = {.lex_state = 218}, - [4941] = {.lex_state = 218}, - [4942] = {.lex_state = 218}, - [4943] = {.lex_state = 218}, - [4944] = {.lex_state = 218}, - [4945] = {.lex_state = 218}, - [4946] = {.lex_state = 218}, - [4947] = {.lex_state = 218}, - [4948] = {.lex_state = 218}, - [4949] = {.lex_state = 218}, - [4950] = {.lex_state = 218}, - [4951] = {.lex_state = 218}, - [4952] = {.lex_state = 218}, - [4953] = {.lex_state = 218}, - [4954] = {.lex_state = 218}, - [4955] = {.lex_state = 218}, - [4956] = {.lex_state = 218}, - [4957] = {.lex_state = 218}, - [4958] = {.lex_state = 218}, - [4959] = {.lex_state = 218}, - [4960] = {.lex_state = 218}, - [4961] = {.lex_state = 218}, - [4962] = {.lex_state = 218}, - [4963] = {.lex_state = 218}, - [4964] = {.lex_state = 218}, - [4965] = {.lex_state = 218}, - [4966] = {.lex_state = 218}, - [4967] = {.lex_state = 218}, - [4968] = {.lex_state = 218}, - [4969] = {.lex_state = 218}, - [4970] = {.lex_state = 218}, - [4971] = {.lex_state = 218}, - [4972] = {.lex_state = 218}, - [4973] = {.lex_state = 218}, - [4974] = {.lex_state = 218}, - [4975] = {.lex_state = 218}, - [4976] = {.lex_state = 218}, - [4977] = {.lex_state = 218}, - [4978] = {.lex_state = 260}, - [4979] = {.lex_state = 439}, - [4980] = {.lex_state = 439}, - [4981] = {.lex_state = 216, .external_lex_state = 57}, - [4982] = {.lex_state = 439}, - [4983] = {.lex_state = 218}, - [4984] = {.lex_state = 260}, - [4985] = {.lex_state = 439}, - [4986] = {.lex_state = 216, .external_lex_state = 57}, - [4987] = {.lex_state = 217}, - [4988] = {.lex_state = 216, .external_lex_state = 57}, - [4989] = {.lex_state = 218}, - [4990] = {.lex_state = 260}, - [4991] = {.lex_state = 439}, - [4992] = {.lex_state = 439}, - [4993] = {.lex_state = 218}, - [4994] = {.lex_state = 260}, - [4995] = {.lex_state = 439}, - [4996] = {.lex_state = 218}, - [4997] = {.lex_state = 218}, - [4998] = {.lex_state = 218}, - [4999] = {.lex_state = 218}, - [5000] = {.lex_state = 218}, - [5001] = {.lex_state = 218}, - [5002] = {.lex_state = 218}, - [5003] = {.lex_state = 218}, - [5004] = {.lex_state = 218}, - [5005] = {.lex_state = 218}, - [5006] = {.lex_state = 218}, - [5007] = {.lex_state = 218}, - [5008] = {.lex_state = 218}, - [5009] = {.lex_state = 218}, - [5010] = {.lex_state = 218}, - [5011] = {.lex_state = 218}, - [5012] = {.lex_state = 218}, - [5013] = {.lex_state = 218}, - [5014] = {.lex_state = 218}, - [5015] = {.lex_state = 218}, - [5016] = {.lex_state = 218}, - [5017] = {.lex_state = 218}, - [5018] = {.lex_state = 218}, - [5019] = {.lex_state = 218}, - [5020] = {.lex_state = 218}, - [5021] = {.lex_state = 218}, - [5022] = {.lex_state = 218}, - [5023] = {.lex_state = 218}, - [5024] = {.lex_state = 218}, - [5025] = {.lex_state = 218}, - [5026] = {.lex_state = 218}, - [5027] = {.lex_state = 218}, - [5028] = {.lex_state = 218}, - [5029] = {.lex_state = 218}, - [5030] = {.lex_state = 218}, - [5031] = {.lex_state = 218}, - [5032] = {.lex_state = 218}, - [5033] = {.lex_state = 218}, - [5034] = {.lex_state = 218}, - [5035] = {.lex_state = 218}, - [5036] = {.lex_state = 218}, - [5037] = {.lex_state = 218}, - [5038] = {.lex_state = 218}, - [5039] = {.lex_state = 218}, - [5040] = {.lex_state = 439}, -}; - -enum { - ts_external_token_heredoc_start = 0, - ts_external_token_simple_heredoc_body = 1, - ts_external_token__heredoc_body_beginning = 2, - ts_external_token__heredoc_body_middle = 3, - ts_external_token_heredoc_end = 4, - ts_external_token_file_descriptor = 5, - ts_external_token__empty_value = 6, - ts_external_token__concat = 7, - ts_external_token_variable_name = 8, - ts_external_token_regex = 9, - ts_external_token__regex_no_slash = 10, - ts_external_token__regex_no_space = 11, - ts_external_token_extglob_pattern = 12, - ts_external_token__bare_dollar = 13, - ts_external_token__brace_start = 14, - ts_external_token_RBRACE = 15, - ts_external_token_RBRACK = 16, - ts_external_token_LT_LT = 17, - ts_external_token_LT_LT_DASH = 18, - ts_external_token_LF = 19, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token_heredoc_start] = sym_heredoc_start, - [ts_external_token_simple_heredoc_body] = sym_simple_heredoc_body, - [ts_external_token__heredoc_body_beginning] = sym__heredoc_body_beginning, - [ts_external_token__heredoc_body_middle] = sym__heredoc_body_middle, - [ts_external_token_heredoc_end] = sym_heredoc_end, - [ts_external_token_file_descriptor] = sym_file_descriptor, - [ts_external_token__empty_value] = sym__empty_value, - [ts_external_token__concat] = sym__concat, - [ts_external_token_variable_name] = sym_variable_name, - [ts_external_token_regex] = sym_regex, - [ts_external_token__regex_no_slash] = sym__regex_no_slash, - [ts_external_token__regex_no_space] = sym__regex_no_space, - [ts_external_token_extglob_pattern] = sym_extglob_pattern, - [ts_external_token__bare_dollar] = sym__bare_dollar, - [ts_external_token__brace_start] = sym__brace_start, - [ts_external_token_RBRACE] = anon_sym_RBRACE3, - [ts_external_token_RBRACK] = anon_sym_RBRACK, - [ts_external_token_LT_LT] = anon_sym_LT_LT, - [ts_external_token_LT_LT_DASH] = anon_sym_LT_LT_DASH, - [ts_external_token_LF] = anon_sym_LF, -}; - -static const bool ts_external_scanner_states[71][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token_heredoc_start] = true, - [ts_external_token_simple_heredoc_body] = true, - [ts_external_token__heredoc_body_beginning] = true, - [ts_external_token__heredoc_body_middle] = true, - [ts_external_token_heredoc_end] = true, - [ts_external_token_file_descriptor] = true, - [ts_external_token__empty_value] = true, - [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, - [ts_external_token_regex] = true, - [ts_external_token__regex_no_slash] = true, - [ts_external_token__regex_no_space] = true, - [ts_external_token_extglob_pattern] = true, - [ts_external_token__bare_dollar] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACE] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [2] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, - [ts_external_token__brace_start] = true, - }, - [3] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token__bare_dollar] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LF] = true, - }, - [4] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, - }, - [5] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token__bare_dollar] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [6] = { - [ts_external_token__concat] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - }, - [7] = { - [ts_external_token__concat] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - }, - [8] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__bare_dollar] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LF] = true, - }, - [9] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__bare_dollar] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [10] = { - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACE] = true, - }, - [11] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LF] = true, - }, - [12] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LF] = true, - }, - [13] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [14] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__bare_dollar] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [15] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [16] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [17] = { - [ts_external_token__concat] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - }, - [18] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [19] = { - [ts_external_token_LT_LT] = true, - }, - [20] = { - [ts_external_token_regex] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACE] = true, - }, - [21] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LF] = true, - }, - [22] = { - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - }, - [23] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LF] = true, - }, - [24] = { - [ts_external_token__concat] = true, - [ts_external_token_LT_LT] = true, - }, - [25] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token__bare_dollar] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [26] = { - [ts_external_token__regex_no_space] = true, - [ts_external_token__brace_start] = true, - }, - [27] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [28] = { - [ts_external_token_extglob_pattern] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LF] = true, - }, - [29] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [30] = { - [ts_external_token__brace_start] = true, - }, - [31] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [32] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [33] = { - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACE] = true, - [ts_external_token_LF] = true, - }, - [34] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LF] = true, - }, - [35] = { - [ts_external_token__concat] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACE] = true, - }, - [36] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LF] = true, - }, - [37] = { - [ts_external_token_extglob_pattern] = true, - [ts_external_token__brace_start] = true, - }, - [38] = { - [ts_external_token__brace_start] = true, - [ts_external_token_LF] = true, - }, - [39] = { - [ts_external_token_LT_LT] = true, - [ts_external_token_LF] = true, - }, - [40] = { - [ts_external_token__empty_value] = true, - [ts_external_token__brace_start] = true, - }, - [41] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, - [ts_external_token__brace_start] = true, - }, - [42] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [43] = { - [ts_external_token_regex] = true, - [ts_external_token__brace_start] = true, - }, - [44] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [45] = { - [ts_external_token_LF] = true, - }, - [46] = { - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, - }, - [47] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [48] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LF] = true, - }, - [49] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LF] = true, - }, - [50] = { - [ts_external_token__concat] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LF] = true, - }, - [51] = { - [ts_external_token__concat] = true, - [ts_external_token__brace_start] = true, - }, - [52] = { - [ts_external_token_variable_name] = true, - }, - [53] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [54] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [55] = { - [ts_external_token_variable_name] = true, - [ts_external_token_RBRACE] = true, - }, - [56] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [57] = { - [ts_external_token_RBRACE] = true, - }, - [58] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_LF] = true, - }, - [59] = { - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [60] = { - [ts_external_token__heredoc_body_middle] = true, - [ts_external_token_heredoc_end] = true, - }, - [61] = { - [ts_external_token__concat] = true, - }, - [62] = { - [ts_external_token_RBRACE] = true, - [ts_external_token_LF] = true, - }, - [63] = { - [ts_external_token__concat] = true, - [ts_external_token_LF] = true, - }, - [64] = { - [ts_external_token__concat] = true, - [ts_external_token_RBRACE] = true, - }, - [65] = { - [ts_external_token_simple_heredoc_body] = true, - [ts_external_token__heredoc_body_beginning] = true, - }, - [66] = { - [ts_external_token_regex] = true, - }, - [67] = { - [ts_external_token_heredoc_end] = true, - }, - [68] = { - [ts_external_token_RBRACK] = true, - }, - [69] = { - [ts_external_token_heredoc_start] = true, - }, - [70] = { - [ts_external_token__regex_no_slash] = true, - }, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [sym_word] = ACTIONS(1), - [anon_sym_for] = ACTIONS(1), - [anon_sym_select] = ACTIONS(1), - [anon_sym_in] = ACTIONS(1), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_DASH_DASH] = 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_PERCENT_EQ] = ACTIONS(1), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1), - [anon_sym_LT_LT_EQ] = ACTIONS(1), - [anon_sym_GT_GT_EQ] = ACTIONS(1), - [anon_sym_AMP_EQ] = ACTIONS(1), - [anon_sym_CARET_EQ] = ACTIONS(1), - [anon_sym_PIPE_EQ] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_STAR_STAR] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_while] = ACTIONS(1), - [anon_sym_until] = ACTIONS(1), - [anon_sym_do] = ACTIONS(1), - [anon_sym_done] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), - [anon_sym_then] = ACTIONS(1), - [anon_sym_fi] = ACTIONS(1), - [anon_sym_elif] = ACTIONS(1), - [anon_sym_else] = ACTIONS(1), - [anon_sym_case] = ACTIONS(1), - [anon_sym_esac] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_SEMI_SEMI] = ACTIONS(1), - [anon_sym_SEMI_AMP] = ACTIONS(1), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(1), - [anon_sym_function] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_PIPE_AMP] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1), - [anon_sym_declare] = ACTIONS(1), - [anon_sym_typeset] = ACTIONS(1), - [anon_sym_export] = ACTIONS(1), - [anon_sym_readonly] = ACTIONS(1), - [anon_sym_local] = ACTIONS(1), - [anon_sym_unset] = ACTIONS(1), - [anon_sym_unsetenv] = ACTIONS(1), - [anon_sym_EQ_TILDE] = ACTIONS(1), - [anon_sym_AMP_GT] = ACTIONS(1), - [anon_sym_AMP_GT_GT] = ACTIONS(1), - [anon_sym_LT_AMP] = ACTIONS(1), - [anon_sym_GT_AMP] = ACTIONS(1), - [anon_sym_GT_PIPE] = ACTIONS(1), - [anon_sym_LT_LT_DASH] = ACTIONS(1), - [anon_sym_LT_LT_LT] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [aux_sym_unary_expression_token1] = ACTIONS(1), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1), - [anon_sym_DOT_DOT] = ACTIONS(1), - [anon_sym_RBRACE2] = ACTIONS(1), - [aux_sym_concatenation_token1] = ACTIONS(1), - [anon_sym_DOLLAR] = ACTIONS(1), - [sym__special_character] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [sym_raw_string] = ACTIONS(1), - [sym_ansi_c_string] = ACTIONS(1), - [aux_sym_number_token1] = ACTIONS(1), - [aux_sym_number_token2] = ACTIONS(1), - [anon_sym_POUND] = ACTIONS(1), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE3] = ACTIONS(1), - [anon_sym_COLON_EQ] = ACTIONS(1), - [anon_sym_COLON_DASH] = ACTIONS(1), - [anon_sym_COLON_PLUS] = ACTIONS(1), - [anon_sym_COLON_QMARK] = ACTIONS(1), - [anon_sym_POUND_POUND] = ACTIONS(1), - [anon_sym_PERCENT_PERCENT] = ACTIONS(1), - [anon_sym_SLASH_SLASH] = ACTIONS(1), - [anon_sym_SLASH_POUND] = ACTIONS(1), - [anon_sym_SLASH_PERCENT] = ACTIONS(1), - [anon_sym_COMMA_COMMA] = ACTIONS(1), - [anon_sym_CARET_CARET] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), - [anon_sym_U] = ACTIONS(1), - [anon_sym_u] = ACTIONS(1), - [anon_sym_L] = ACTIONS(1), - [anon_sym_Q] = ACTIONS(1), - [anon_sym_E] = ACTIONS(1), - [anon_sym_P] = ACTIONS(1), - [anon_sym_A] = ACTIONS(1), - [anon_sym_K] = ACTIONS(1), - [anon_sym_a] = ACTIONS(1), - [anon_sym_k] = ACTIONS(1), - [anon_sym_COMMA2] = ACTIONS(1), - [anon_sym_COMMA_COMMA2] = ACTIONS(1), - [anon_sym_CARET2] = ACTIONS(1), - [anon_sym_CARET_CARET2] = ACTIONS(1), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1), - [anon_sym_BQUOTE] = ACTIONS(1), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1), - [anon_sym_LT_LPAREN] = ACTIONS(1), - [anon_sym_GT_LPAREN] = ACTIONS(1), - [sym_comment] = ACTIONS(3), - [sym__comment_word] = ACTIONS(1), - [anon_sym_0] = ACTIONS(1), - [anon_sym__] = ACTIONS(1), - [sym_test_operator] = ACTIONS(1), - [sym_heredoc_start] = ACTIONS(1), - [sym_simple_heredoc_body] = ACTIONS(1), - [sym__heredoc_body_beginning] = ACTIONS(1), - [sym__heredoc_body_middle] = ACTIONS(1), - [sym_heredoc_end] = ACTIONS(1), - [sym_file_descriptor] = ACTIONS(1), - [sym__empty_value] = ACTIONS(1), - [sym__concat] = ACTIONS(1), - [sym_variable_name] = ACTIONS(1), - [sym_regex] = ACTIONS(1), - [sym__regex_no_slash] = ACTIONS(1), - [sym__regex_no_space] = ACTIONS(1), - [sym_extglob_pattern] = ACTIONS(1), - [sym__bare_dollar] = ACTIONS(1), - [sym__brace_start] = ACTIONS(1), - }, - [1] = { - [sym_program] = STATE(4874), - [sym__statements] = STATE(4873), - [sym_redirected_statement] = STATE(2851), - [sym_for_statement] = STATE(2851), - [sym_c_style_for_statement] = STATE(2851), - [sym_while_statement] = STATE(2851), - [sym_if_statement] = STATE(2851), - [sym_case_statement] = STATE(2851), - [sym_function_definition] = STATE(2851), - [sym_compound_statement] = STATE(2851), - [sym_subshell] = STATE(2851), - [sym_pipeline] = STATE(2851), - [sym_list] = STATE(2851), - [sym_negated_command] = STATE(2851), - [sym_test_command] = STATE(2851), - [sym_declaration_command] = STATE(2851), - [sym_unset_command] = STATE(2851), - [sym_command] = STATE(2851), - [sym_command_name] = STATE(473), - [sym_variable_assignment] = STATE(662), - [sym_variable_assignments] = STATE(2851), - [sym_subscript] = STATE(4317), - [sym_file_redirect] = STATE(1499), - [sym_arithmetic_expansion] = STATE(794), - [sym_brace_expression] = STATE(794), - [sym_concatenation] = STATE(1275), - [sym_string] = STATE(794), - [sym_translated_string] = STATE(794), - [sym_number] = STATE(794), - [sym_simple_expansion] = STATE(794), - [sym_expansion] = STATE(794), - [sym_command_substitution] = STATE(794), - [sym_process_substitution] = STATE(794), - [aux_sym__statements_repeat1] = STATE(303), - [aux_sym_redirected_statement_repeat2] = STATE(2998), - [aux_sym_command_repeat1] = STATE(908), - [aux_sym__literal_repeat1] = STATE(1104), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_GT_GT] = ACTIONS(15), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_GT] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(17), - [anon_sym_AMP_GT_GT] = ACTIONS(15), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(15), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym__special_character] = ACTIONS(43), - [anon_sym_DQUOTE] = ACTIONS(45), - [sym_raw_string] = ACTIONS(47), - [sym_ansi_c_string] = ACTIONS(47), - [aux_sym_number_token1] = ACTIONS(49), - [aux_sym_number_token2] = ACTIONS(51), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(55), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(59), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(65), - [sym_file_descriptor] = ACTIONS(67), - [sym_variable_name] = ACTIONS(69), - [sym__brace_start] = ACTIONS(71), - }, - [2] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(1948), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(342), - [sym_brace_expression] = STATE(342), - [sym_concatenation] = STATE(402), - [sym_string] = STATE(342), - [sym_translated_string] = STATE(342), - [sym_number] = STATE(342), - [sym_simple_expansion] = STATE(342), - [sym_expansion] = STATE(342), - [sym_command_substitution] = STATE(342), - [sym_process_substitution] = STATE(342), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(377), - [sym_word] = ACTIONS(73), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN_RPAREN] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(93), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [aux_sym_number_token1] = ACTIONS(103), - [aux_sym_number_token2] = ACTIONS(105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), - [anon_sym_BQUOTE] = ACTIONS(111), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), - [anon_sym_LT_LPAREN] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(115), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(117), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(123), - }, - [3] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(2112), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(346), - [sym_brace_expression] = STATE(346), - [sym_concatenation] = STATE(400), - [sym_string] = STATE(346), - [sym_translated_string] = STATE(346), - [sym_number] = STATE(346), - [sym_simple_expansion] = STATE(346), - [sym_expansion] = STATE(346), - [sym_command_substitution] = STATE(346), - [sym_process_substitution] = STATE(346), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(379), - [sym_word] = ACTIONS(125), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN_RPAREN] = ACTIONS(127), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(131), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(133), - [sym_ansi_c_string] = ACTIONS(133), - [aux_sym_number_token1] = ACTIONS(103), - [aux_sym_number_token2] = ACTIONS(105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), - [anon_sym_BQUOTE] = ACTIONS(111), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), - [anon_sym_LT_LPAREN] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(115), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(135), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(123), - }, - [4] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(1941), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(342), - [sym_brace_expression] = STATE(342), - [sym_concatenation] = STATE(402), - [sym_string] = STATE(342), - [sym_translated_string] = STATE(342), - [sym_number] = STATE(342), - [sym_simple_expansion] = STATE(342), - [sym_expansion] = STATE(342), - [sym_command_substitution] = STATE(342), - [sym_process_substitution] = STATE(342), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(377), - [sym_word] = ACTIONS(73), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN_RPAREN] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(93), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [aux_sym_number_token1] = ACTIONS(103), - [aux_sym_number_token2] = ACTIONS(105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), - [anon_sym_BQUOTE] = ACTIONS(111), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), - [anon_sym_LT_LPAREN] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(115), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(117), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(123), - }, - [5] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(2045), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(346), - [sym_brace_expression] = STATE(346), - [sym_concatenation] = STATE(400), - [sym_string] = STATE(346), - [sym_translated_string] = STATE(346), - [sym_number] = STATE(346), - [sym_simple_expansion] = STATE(346), - [sym_expansion] = STATE(346), - [sym_command_substitution] = STATE(346), - [sym_process_substitution] = STATE(346), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(379), - [sym_word] = ACTIONS(125), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN_RPAREN] = ACTIONS(137), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(131), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(133), - [sym_ansi_c_string] = ACTIONS(133), - [aux_sym_number_token1] = ACTIONS(103), - [aux_sym_number_token2] = ACTIONS(105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), - [anon_sym_BQUOTE] = ACTIONS(111), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), - [anon_sym_LT_LPAREN] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(115), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(135), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(123), - }, - [6] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(1954), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(342), - [sym_brace_expression] = STATE(342), - [sym_concatenation] = STATE(402), - [sym_string] = STATE(342), - [sym_translated_string] = STATE(342), - [sym_number] = STATE(342), - [sym_simple_expansion] = STATE(342), - [sym_expansion] = STATE(342), - [sym_command_substitution] = STATE(342), - [sym_process_substitution] = STATE(342), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(377), - [sym_word] = ACTIONS(73), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN_RPAREN] = ACTIONS(127), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(93), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(101), - [sym_ansi_c_string] = ACTIONS(101), - [aux_sym_number_token1] = ACTIONS(103), - [aux_sym_number_token2] = ACTIONS(105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), - [anon_sym_BQUOTE] = ACTIONS(111), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), - [anon_sym_LT_LPAREN] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(115), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(117), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(123), - }, - [7] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(2079), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(346), - [sym_brace_expression] = STATE(346), - [sym_concatenation] = STATE(400), - [sym_string] = STATE(346), - [sym_translated_string] = STATE(346), - [sym_number] = STATE(346), - [sym_simple_expansion] = STATE(346), - [sym_expansion] = STATE(346), - [sym_command_substitution] = STATE(346), - [sym_process_substitution] = STATE(346), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(379), - [sym_word] = ACTIONS(125), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN_RPAREN] = ACTIONS(77), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(83), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(131), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym__special_character] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(99), - [sym_raw_string] = ACTIONS(133), - [sym_ansi_c_string] = ACTIONS(133), - [aux_sym_number_token1] = ACTIONS(103), - [aux_sym_number_token2] = ACTIONS(105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(109), - [anon_sym_BQUOTE] = ACTIONS(111), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(113), - [anon_sym_LT_LPAREN] = ACTIONS(115), - [anon_sym_GT_LPAREN] = ACTIONS(115), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(135), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(123), - }, - [8] = { - [sym__expression] = STATE(2060), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(1637), - [sym_brace_expression] = STATE(1637), - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(1637), - [sym_translated_string] = STATE(1637), - [sym_number] = STATE(1637), - [sym_simple_expansion] = STATE(1637), - [sym_expansion] = STATE(1637), - [sym_command_substitution] = STATE(1637), - [sym_process_substitution] = STATE(1637), - [aux_sym__literal_repeat1] = STATE(1636), - [aux_sym_concatenation_repeat1] = STATE(344), - [sym_word] = ACTIONS(139), - [anon_sym_LPAREN_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN_RPAREN] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(143), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_SEMI_SEMI] = ACTIONS(145), - [anon_sym_PIPE_AMP] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(152), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(145), - [anon_sym_LT_AMP] = ACTIONS(145), - [anon_sym_GT_AMP] = ACTIONS(145), - [anon_sym_GT_PIPE] = ACTIONS(145), - [anon_sym_LT_LT_DASH] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(145), - [anon_sym_LT_LT_LT] = ACTIONS(145), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(131), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(141), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(156), - [sym__special_character] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(160), - [sym_raw_string] = ACTIONS(139), - [sym_ansi_c_string] = ACTIONS(139), - [aux_sym_number_token1] = ACTIONS(162), - [aux_sym_number_token2] = ACTIONS(164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(168), - [anon_sym_BQUOTE] = ACTIONS(170), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(176), - [sym_file_descriptor] = ACTIONS(178), - [sym__concat] = ACTIONS(180), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(182), - }, - [9] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(2129), - [sym_binary_expression] = STATE(2117), - [sym_ternary_expression] = STATE(2117), - [sym_unary_expression] = STATE(2117), - [sym_postfix_expression] = STATE(2117), - [sym_parenthesized_expression] = STATE(2117), - [sym_arithmetic_expansion] = STATE(362), - [sym_brace_expression] = STATE(362), - [sym_concatenation] = STATE(405), - [sym_string] = STATE(362), - [sym_translated_string] = STATE(362), - [sym_number] = STATE(362), - [sym_simple_expansion] = STATE(362), - [sym_expansion] = STATE(362), - [sym_command_substitution] = STATE(362), - [sym_process_substitution] = STATE(362), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(399), - [sym_word] = ACTIONS(184), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(186), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(188), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(190), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(192), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(186), - [anon_sym_DOLLAR] = ACTIONS(194), - [sym__special_character] = ACTIONS(196), - [anon_sym_DQUOTE] = ACTIONS(198), - [sym_raw_string] = ACTIONS(200), - [sym_ansi_c_string] = ACTIONS(200), - [aux_sym_number_token1] = ACTIONS(202), - [aux_sym_number_token2] = ACTIONS(204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(208), - [anon_sym_BQUOTE] = ACTIONS(210), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(212), - [anon_sym_LT_LPAREN] = ACTIONS(214), - [anon_sym_GT_LPAREN] = ACTIONS(214), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(216), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(218), - }, - [10] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(2052), - [sym_binary_expression] = STATE(2117), - [sym_ternary_expression] = STATE(2117), - [sym_unary_expression] = STATE(2117), - [sym_postfix_expression] = STATE(2117), - [sym_parenthesized_expression] = STATE(2117), - [sym_arithmetic_expansion] = STATE(362), - [sym_brace_expression] = STATE(362), - [sym_concatenation] = STATE(405), - [sym_string] = STATE(362), - [sym_translated_string] = STATE(362), - [sym_number] = STATE(362), - [sym_simple_expansion] = STATE(362), - [sym_expansion] = STATE(362), - [sym_command_substitution] = STATE(362), - [sym_process_substitution] = STATE(362), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(399), - [sym_word] = ACTIONS(184), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(186), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(188), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(190), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(192), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(186), - [anon_sym_DOLLAR] = ACTIONS(194), - [sym__special_character] = ACTIONS(196), - [anon_sym_DQUOTE] = ACTIONS(198), - [sym_raw_string] = ACTIONS(200), - [sym_ansi_c_string] = ACTIONS(200), - [aux_sym_number_token1] = ACTIONS(202), - [aux_sym_number_token2] = ACTIONS(204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(208), - [anon_sym_BQUOTE] = ACTIONS(210), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(212), - [anon_sym_LT_LPAREN] = ACTIONS(214), - [anon_sym_GT_LPAREN] = ACTIONS(214), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(216), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(218), - }, - [11] = { - [sym__expression] = STATE(1990), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(1557), - [sym_translated_string] = STATE(1557), - [sym_number] = STATE(1557), - [sym_simple_expansion] = STATE(1557), - [sym_expansion] = STATE(1557), - [sym_command_substitution] = STATE(1557), - [sym_process_substitution] = STATE(1557), - [aux_sym__literal_repeat1] = STATE(1636), - [aux_sym_concatenation_repeat1] = STATE(344), - [sym_word] = ACTIONS(220), - [anon_sym_LPAREN_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN_RPAREN] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(143), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_SEMI_SEMI] = ACTIONS(145), - [anon_sym_PIPE_AMP] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(222), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(145), - [anon_sym_LT_AMP] = ACTIONS(145), - [anon_sym_GT_AMP] = ACTIONS(145), - [anon_sym_GT_PIPE] = ACTIONS(145), - [anon_sym_LT_LT_DASH] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(145), - [anon_sym_LT_LT_LT] = ACTIONS(145), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(93), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(141), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(156), - [sym__special_character] = ACTIONS(224), - [anon_sym_DQUOTE] = ACTIONS(160), - [sym_raw_string] = ACTIONS(220), - [sym_ansi_c_string] = ACTIONS(220), - [aux_sym_number_token1] = ACTIONS(162), - [aux_sym_number_token2] = ACTIONS(164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(168), - [anon_sym_BQUOTE] = ACTIONS(170), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(226), - [sym_file_descriptor] = ACTIONS(178), - [sym__concat] = ACTIONS(180), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(182), - }, - [12] = { - [sym__statements] = STATE(4670), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym__expression] = STATE(2085), - [sym_binary_expression] = STATE(2117), - [sym_ternary_expression] = STATE(2117), - [sym_unary_expression] = STATE(2117), - [sym_postfix_expression] = STATE(2117), - [sym_parenthesized_expression] = STATE(2117), - [sym_arithmetic_expansion] = STATE(362), - [sym_brace_expression] = STATE(362), - [sym_concatenation] = STATE(405), - [sym_string] = STATE(362), - [sym_translated_string] = STATE(362), - [sym_number] = STATE(362), - [sym_simple_expansion] = STATE(362), - [sym_expansion] = STATE(362), - [sym_command_substitution] = STATE(362), - [sym_process_substitution] = STATE(362), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(399), - [sym_word] = ACTIONS(184), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(186), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(190), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [aux_sym_unary_expression_token1] = ACTIONS(192), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(186), - [anon_sym_DOLLAR] = ACTIONS(194), - [sym__special_character] = ACTIONS(196), - [anon_sym_DQUOTE] = ACTIONS(198), - [sym_raw_string] = ACTIONS(200), - [sym_ansi_c_string] = ACTIONS(200), - [aux_sym_number_token1] = ACTIONS(202), - [aux_sym_number_token2] = ACTIONS(204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(208), - [anon_sym_BQUOTE] = ACTIONS(210), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(212), - [anon_sym_LT_LPAREN] = ACTIONS(214), - [anon_sym_GT_LPAREN] = ACTIONS(214), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(216), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(218), - }, - [13] = { - [sym__expression] = STATE(2122), - [sym_binary_expression] = STATE(2117), - [sym_ternary_expression] = STATE(2117), - [sym_unary_expression] = STATE(2117), - [sym_postfix_expression] = STATE(2117), - [sym_parenthesized_expression] = STATE(2117), - [sym_arithmetic_expansion] = STATE(1593), - [sym_brace_expression] = STATE(1593), - [sym_concatenation] = STATE(2117), - [sym_string] = STATE(1593), - [sym_translated_string] = STATE(1593), - [sym_number] = STATE(1593), - [sym_simple_expansion] = STATE(1593), - [sym_expansion] = STATE(1593), - [sym_command_substitution] = STATE(1593), - [sym_process_substitution] = STATE(1593), - [aux_sym__literal_repeat1] = STATE(1586), - [aux_sym_concatenation_repeat1] = STATE(360), - [sym_word] = ACTIONS(230), - [anon_sym_LPAREN_LPAREN] = ACTIONS(232), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(143), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(234), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_SEMI_SEMI] = ACTIONS(145), - [anon_sym_PIPE_AMP] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(236), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(145), - [anon_sym_LT_AMP] = ACTIONS(145), - [anon_sym_GT_AMP] = ACTIONS(145), - [anon_sym_GT_PIPE] = ACTIONS(145), - [anon_sym_LT_LT_DASH] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(145), - [anon_sym_LT_LT_LT] = ACTIONS(145), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(192), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(232), - [aux_sym_concatenation_token1] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(240), - [sym__special_character] = ACTIONS(242), - [anon_sym_DQUOTE] = ACTIONS(244), - [sym_raw_string] = ACTIONS(230), - [sym_ansi_c_string] = ACTIONS(230), - [aux_sym_number_token1] = ACTIONS(246), - [aux_sym_number_token2] = ACTIONS(248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(256), - [anon_sym_LT_LPAREN] = ACTIONS(258), - [anon_sym_GT_LPAREN] = ACTIONS(258), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(260), - [sym_file_descriptor] = ACTIONS(178), - [sym__concat] = ACTIONS(262), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(264), - }, - [14] = { - [sym_redirected_statement] = STATE(3265), - [sym_for_statement] = STATE(3302), - [sym_c_style_for_statement] = STATE(3302), - [sym_while_statement] = STATE(3302), - [sym_if_statement] = STATE(3302), - [sym_case_statement] = STATE(3302), - [sym_function_definition] = STATE(3302), - [sym_compound_statement] = STATE(3302), - [sym_subshell] = STATE(3302), - [sym_pipeline] = STATE(3302), - [sym_list] = STATE(3302), - [sym_negated_command] = STATE(3302), - [sym_test_command] = STATE(3302), - [sym_declaration_command] = STATE(3302), - [sym_unset_command] = STATE(3302), - [sym_command] = STATE(3302), - [sym_command_name] = STATE(611), - [sym_variable_assignment] = STATE(1328), - [sym_variable_assignments] = STATE(3302), - [sym_subscript] = STATE(4307), - [sym_file_redirect] = STATE(2105), - [sym__expression] = STATE(2095), - [sym_binary_expression] = STATE(2073), - [sym_ternary_expression] = STATE(2073), - [sym_unary_expression] = STATE(2073), - [sym_postfix_expression] = STATE(2073), - [sym_parenthesized_expression] = STATE(2073), - [sym_arithmetic_expansion] = STATE(403), - [sym_brace_expression] = STATE(403), - [sym_concatenation] = STATE(434), - [sym_string] = STATE(403), - [sym_translated_string] = STATE(403), - [sym_number] = STATE(403), - [sym_simple_expansion] = STATE(403), - [sym_expansion] = STATE(403), - [sym_command_substitution] = STATE(403), - [sym_process_substitution] = STATE(403), - [aux_sym_redirected_statement_repeat2] = STATE(3507), - [aux_sym_command_repeat1] = STATE(896), - [aux_sym__literal_repeat1] = STATE(431), - [sym_word] = ACTIONS(266), - [anon_sym_for] = ACTIONS(268), - [anon_sym_select] = ACTIONS(270), - [anon_sym_LPAREN_LPAREN] = ACTIONS(272), - [anon_sym_GT_GT] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(278), - [anon_sym_while] = ACTIONS(280), - [anon_sym_until] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_case] = ACTIONS(284), - [anon_sym_function] = ACTIONS(286), - [anon_sym_LBRACE] = ACTIONS(288), - [anon_sym_BANG] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_RBRACK] = ACTIONS(294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(296), - [anon_sym_declare] = ACTIONS(298), - [anon_sym_typeset] = ACTIONS(298), - [anon_sym_export] = ACTIONS(298), - [anon_sym_readonly] = ACTIONS(298), - [anon_sym_local] = ACTIONS(298), - [anon_sym_unset] = ACTIONS(300), - [anon_sym_unsetenv] = ACTIONS(300), - [anon_sym_AMP_GT] = ACTIONS(276), - [anon_sym_AMP_GT_GT] = ACTIONS(274), - [anon_sym_LT_AMP] = ACTIONS(274), - [anon_sym_GT_AMP] = ACTIONS(274), - [anon_sym_GT_PIPE] = ACTIONS(274), - [aux_sym_unary_expression_token1] = ACTIONS(302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(272), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym__special_character] = ACTIONS(306), - [anon_sym_DQUOTE] = ACTIONS(308), - [sym_raw_string] = ACTIONS(310), - [sym_ansi_c_string] = ACTIONS(310), - [aux_sym_number_token1] = ACTIONS(312), - [aux_sym_number_token2] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(322), - [anon_sym_LT_LPAREN] = ACTIONS(324), - [anon_sym_GT_LPAREN] = ACTIONS(324), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(326), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym__brace_start] = ACTIONS(332), - }, - [15] = { - [sym_redirected_statement] = STATE(3203), - [sym_for_statement] = STATE(3302), - [sym_c_style_for_statement] = STATE(3302), - [sym_while_statement] = STATE(3302), - [sym_if_statement] = STATE(3302), - [sym_case_statement] = STATE(3302), - [sym_function_definition] = STATE(3302), - [sym_compound_statement] = STATE(3302), - [sym_subshell] = STATE(3302), - [sym_pipeline] = STATE(3302), - [sym_list] = STATE(3302), - [sym_negated_command] = STATE(3302), - [sym_test_command] = STATE(3302), - [sym_declaration_command] = STATE(3302), - [sym_unset_command] = STATE(3302), - [sym_command] = STATE(3302), - [sym_command_name] = STATE(611), - [sym_variable_assignment] = STATE(1328), - [sym_variable_assignments] = STATE(3302), - [sym_subscript] = STATE(4307), - [sym_file_redirect] = STATE(2105), - [sym__expression] = STATE(2074), - [sym_binary_expression] = STATE(2073), - [sym_ternary_expression] = STATE(2073), - [sym_unary_expression] = STATE(2073), - [sym_postfix_expression] = STATE(2073), - [sym_parenthesized_expression] = STATE(2073), - [sym_arithmetic_expansion] = STATE(403), - [sym_brace_expression] = STATE(403), - [sym_concatenation] = STATE(434), - [sym_string] = STATE(403), - [sym_translated_string] = STATE(403), - [sym_number] = STATE(403), - [sym_simple_expansion] = STATE(403), - [sym_expansion] = STATE(403), - [sym_command_substitution] = STATE(403), - [sym_process_substitution] = STATE(403), - [aux_sym_redirected_statement_repeat2] = STATE(3507), - [aux_sym_command_repeat1] = STATE(896), - [aux_sym__literal_repeat1] = STATE(431), - [sym_word] = ACTIONS(266), - [anon_sym_for] = ACTIONS(268), - [anon_sym_select] = ACTIONS(270), - [anon_sym_LPAREN_LPAREN] = ACTIONS(272), - [anon_sym_GT_GT] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(278), - [anon_sym_while] = ACTIONS(280), - [anon_sym_until] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_case] = ACTIONS(284), - [anon_sym_function] = ACTIONS(286), - [anon_sym_LBRACE] = ACTIONS(288), - [anon_sym_BANG] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_RBRACK] = ACTIONS(334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(296), - [anon_sym_declare] = ACTIONS(298), - [anon_sym_typeset] = ACTIONS(298), - [anon_sym_export] = ACTIONS(298), - [anon_sym_readonly] = ACTIONS(298), - [anon_sym_local] = ACTIONS(298), - [anon_sym_unset] = ACTIONS(300), - [anon_sym_unsetenv] = ACTIONS(300), - [anon_sym_AMP_GT] = ACTIONS(276), - [anon_sym_AMP_GT_GT] = ACTIONS(274), - [anon_sym_LT_AMP] = ACTIONS(274), - [anon_sym_GT_AMP] = ACTIONS(274), - [anon_sym_GT_PIPE] = ACTIONS(274), - [aux_sym_unary_expression_token1] = ACTIONS(302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(272), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym__special_character] = ACTIONS(306), - [anon_sym_DQUOTE] = ACTIONS(308), - [sym_raw_string] = ACTIONS(310), - [sym_ansi_c_string] = ACTIONS(310), - [aux_sym_number_token1] = ACTIONS(312), - [aux_sym_number_token2] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(322), - [anon_sym_LT_LPAREN] = ACTIONS(324), - [anon_sym_GT_LPAREN] = ACTIONS(324), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(326), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym__brace_start] = ACTIONS(332), - }, - [16] = { - [sym_redirected_statement] = STATE(3210), - [sym_for_statement] = STATE(3302), - [sym_c_style_for_statement] = STATE(3302), - [sym_while_statement] = STATE(3302), - [sym_if_statement] = STATE(3302), - [sym_case_statement] = STATE(3302), - [sym_function_definition] = STATE(3302), - [sym_compound_statement] = STATE(3302), - [sym_subshell] = STATE(3302), - [sym_pipeline] = STATE(3302), - [sym_list] = STATE(3302), - [sym_negated_command] = STATE(3302), - [sym_test_command] = STATE(3302), - [sym_declaration_command] = STATE(3302), - [sym_unset_command] = STATE(3302), - [sym_command] = STATE(3302), - [sym_command_name] = STATE(611), - [sym_variable_assignment] = STATE(1328), - [sym_variable_assignments] = STATE(3302), - [sym_subscript] = STATE(4307), - [sym_file_redirect] = STATE(2105), - [sym__expression] = STATE(2143), - [sym_binary_expression] = STATE(2073), - [sym_ternary_expression] = STATE(2073), - [sym_unary_expression] = STATE(2073), - [sym_postfix_expression] = STATE(2073), - [sym_parenthesized_expression] = STATE(2073), - [sym_arithmetic_expansion] = STATE(403), - [sym_brace_expression] = STATE(403), - [sym_concatenation] = STATE(434), - [sym_string] = STATE(403), - [sym_translated_string] = STATE(403), - [sym_number] = STATE(403), - [sym_simple_expansion] = STATE(403), - [sym_expansion] = STATE(403), - [sym_command_substitution] = STATE(403), - [sym_process_substitution] = STATE(403), - [aux_sym_redirected_statement_repeat2] = STATE(3507), - [aux_sym_command_repeat1] = STATE(896), - [aux_sym__literal_repeat1] = STATE(431), - [sym_word] = ACTIONS(266), - [anon_sym_for] = ACTIONS(268), - [anon_sym_select] = ACTIONS(270), - [anon_sym_LPAREN_LPAREN] = ACTIONS(272), - [anon_sym_GT_GT] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(278), - [anon_sym_while] = ACTIONS(280), - [anon_sym_until] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_case] = ACTIONS(284), - [anon_sym_function] = ACTIONS(286), - [anon_sym_LBRACE] = ACTIONS(288), - [anon_sym_BANG] = ACTIONS(290), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_RBRACK] = ACTIONS(336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(296), - [anon_sym_declare] = ACTIONS(298), - [anon_sym_typeset] = ACTIONS(298), - [anon_sym_export] = ACTIONS(298), - [anon_sym_readonly] = ACTIONS(298), - [anon_sym_local] = ACTIONS(298), - [anon_sym_unset] = ACTIONS(300), - [anon_sym_unsetenv] = ACTIONS(300), - [anon_sym_AMP_GT] = ACTIONS(276), - [anon_sym_AMP_GT_GT] = ACTIONS(274), - [anon_sym_LT_AMP] = ACTIONS(274), - [anon_sym_GT_AMP] = ACTIONS(274), - [anon_sym_GT_PIPE] = ACTIONS(274), - [aux_sym_unary_expression_token1] = ACTIONS(302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(272), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym__special_character] = ACTIONS(306), - [anon_sym_DQUOTE] = ACTIONS(308), - [sym_raw_string] = ACTIONS(310), - [sym_ansi_c_string] = ACTIONS(310), - [aux_sym_number_token1] = ACTIONS(312), - [aux_sym_number_token2] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(322), - [anon_sym_LT_LPAREN] = ACTIONS(324), - [anon_sym_GT_LPAREN] = ACTIONS(324), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(326), - [sym_file_descriptor] = ACTIONS(328), - [sym_variable_name] = ACTIONS(330), - [sym__brace_start] = ACTIONS(332), - }, - [17] = { - [aux_sym__statements2] = STATE(18), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_elif_clause] = STATE(4026), - [sym_else_clause] = STATE(4420), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_if_statement_repeat1] = STATE(4026), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(346), - [anon_sym_elif] = ACTIONS(348), - [anon_sym_else] = ACTIONS(350), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [18] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_elif_clause] = STATE(4043), - [sym_else_clause] = STATE(4640), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_if_statement_repeat1] = STATE(4043), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(390), - [anon_sym_elif] = ACTIONS(348), - [anon_sym_else] = ACTIONS(350), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [19] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_elif_clause] = STATE(4040), - [sym_else_clause] = STATE(4425), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_if_statement_repeat1] = STATE(4040), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(392), - [anon_sym_elif] = ACTIONS(348), - [anon_sym_else] = ACTIONS(350), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [20] = { - [aux_sym__statements2] = STATE(19), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_elif_clause] = STATE(4024), - [sym_else_clause] = STATE(4437), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_if_statement_repeat1] = STATE(4024), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(394), - [anon_sym_elif] = ACTIONS(348), - [anon_sym_else] = ACTIONS(350), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [21] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_elif_clause] = STATE(4023), - [sym_else_clause] = STATE(4604), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_if_statement_repeat1] = STATE(4023), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(396), - [anon_sym_elif] = ACTIONS(348), - [anon_sym_else] = ACTIONS(350), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [22] = { - [aux_sym__statements2] = STATE(21), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_elif_clause] = STATE(4028), - [sym_else_clause] = STATE(4621), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_if_statement_repeat1] = STATE(4028), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(398), - [anon_sym_elif] = ACTIONS(348), - [anon_sym_else] = ACTIONS(350), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [23] = { - [sym__statements] = STATE(4099), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(420), - [anon_sym_SEMI_SEMI] = ACTIONS(422), - [anon_sym_SEMI_AMP] = ACTIONS(424), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(426), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [24] = { - [sym__statements] = STATE(4096), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(472), - [anon_sym_SEMI_SEMI] = ACTIONS(474), - [anon_sym_SEMI_AMP] = ACTIONS(476), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(478), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [25] = { - [sym__statements] = STATE(4142), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(480), - [anon_sym_SEMI_SEMI] = ACTIONS(482), - [anon_sym_SEMI_AMP] = ACTIONS(484), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(484), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [26] = { - [sym__statements] = STATE(4101), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(486), - [anon_sym_SEMI_SEMI] = ACTIONS(488), - [anon_sym_SEMI_AMP] = ACTIONS(490), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(492), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [27] = { - [sym__statements] = STATE(4095), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(486), - [anon_sym_SEMI_SEMI] = ACTIONS(494), - [anon_sym_SEMI_AMP] = ACTIONS(496), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(498), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [28] = { - [sym__statements] = STATE(4106), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(500), - [anon_sym_SEMI_SEMI] = ACTIONS(502), - [anon_sym_SEMI_AMP] = ACTIONS(504), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(506), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [29] = { - [sym__statements] = STATE(4100), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(500), - [anon_sym_SEMI_SEMI] = ACTIONS(508), - [anon_sym_SEMI_AMP] = ACTIONS(510), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(512), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [30] = { - [sym__statements] = STATE(4113), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(514), - [anon_sym_SEMI_SEMI] = ACTIONS(516), - [anon_sym_SEMI_AMP] = ACTIONS(518), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(518), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [31] = { - [sym__statements] = STATE(4109), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(420), - [anon_sym_SEMI_SEMI] = ACTIONS(520), - [anon_sym_SEMI_AMP] = ACTIONS(522), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(524), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [32] = { - [sym__statements] = STATE(4146), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(472), - [anon_sym_SEMI_SEMI] = ACTIONS(526), - [anon_sym_SEMI_AMP] = ACTIONS(528), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(530), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [33] = { - [sym__statements] = STATE(4135), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(532), - [anon_sym_SEMI_SEMI] = ACTIONS(534), - [anon_sym_SEMI_AMP] = ACTIONS(536), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(536), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [34] = { - [sym__statements] = STATE(4147), - [sym_redirected_statement] = STATE(2711), - [sym_for_statement] = STATE(2711), - [sym_c_style_for_statement] = STATE(2711), - [sym_while_statement] = STATE(2711), - [sym_if_statement] = STATE(2711), - [sym_case_statement] = STATE(2711), - [sym_function_definition] = STATE(2711), - [sym_compound_statement] = STATE(2711), - [sym_subshell] = STATE(2711), - [sym_pipeline] = STATE(2711), - [sym_list] = STATE(2711), - [sym_negated_command] = STATE(2711), - [sym_test_command] = STATE(2711), - [sym_declaration_command] = STATE(2711), - [sym_unset_command] = STATE(2711), - [sym_command] = STATE(2711), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(613), - [sym_variable_assignments] = STATE(2711), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(297), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_esac] = ACTIONS(538), - [anon_sym_SEMI_SEMI] = ACTIONS(540), - [anon_sym_SEMI_AMP] = ACTIONS(542), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(542), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [35] = { - [sym__statements] = STATE(4275), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(552), - [anon_sym_SEMI_AMP] = ACTIONS(542), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(542), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [36] = { - [sym__statements] = STATE(4181), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(592), - [anon_sym_SEMI_AMP] = ACTIONS(424), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(426), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [37] = { - [sym__statements] = STATE(4177), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(594), - [anon_sym_SEMI_AMP] = ACTIONS(484), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(484), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [38] = { - [sym__expression] = STATE(2096), - [sym_binary_expression] = STATE(2073), - [sym_ternary_expression] = STATE(2073), - [sym_unary_expression] = STATE(2073), - [sym_postfix_expression] = STATE(2073), - [sym_parenthesized_expression] = STATE(2073), - [sym_arithmetic_expansion] = STATE(1635), - [sym_brace_expression] = STATE(1635), - [sym_concatenation] = STATE(2073), - [sym_string] = STATE(1635), - [sym_translated_string] = STATE(1635), - [sym_number] = STATE(1635), - [sym_simple_expansion] = STATE(1635), - [sym_expansion] = STATE(1635), - [sym_command_substitution] = STATE(1635), - [sym_process_substitution] = STATE(1635), - [aux_sym__literal_repeat1] = STATE(1923), - [aux_sym_concatenation_repeat1] = STATE(408), - [sym_word] = ACTIONS(596), - [anon_sym_LPAREN_LPAREN] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(602), - [anon_sym_PIPE_PIPE] = ACTIONS(602), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(605), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_PIPE_AMP] = ACTIONS(178), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(178), - [anon_sym_LT_AMP] = ACTIONS(178), - [anon_sym_GT_AMP] = ACTIONS(178), - [anon_sym_GT_PIPE] = ACTIONS(178), - [anon_sym_LT_LT_DASH] = ACTIONS(178), - [anon_sym_LT_LT_LT] = ACTIONS(178), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), - [aux_sym_concatenation_token1] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(611), - [sym__special_character] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(615), - [sym_raw_string] = ACTIONS(617), - [sym_ansi_c_string] = ACTIONS(617), - [aux_sym_number_token1] = ACTIONS(619), - [aux_sym_number_token2] = ACTIONS(621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(633), - [sym_file_descriptor] = ACTIONS(178), - [sym__concat] = ACTIONS(609), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(635), - }, - [39] = { - [sym__statements] = STATE(4290), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(637), - [anon_sym_SEMI_AMP] = ACTIONS(476), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(478), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [40] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(639), - [anon_sym_for] = ACTIONS(642), - [anon_sym_select] = ACTIONS(645), - [anon_sym_LPAREN_LPAREN] = ACTIONS(648), - [anon_sym_GT_GT] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_while] = ACTIONS(660), - [anon_sym_until] = ACTIONS(660), - [anon_sym_done] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_fi] = ACTIONS(663), - [anon_sym_elif] = ACTIONS(663), - [anon_sym_else] = ACTIONS(663), - [anon_sym_case] = ACTIONS(668), - [anon_sym_function] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACK_LBRACK] = ACTIONS(683), - [anon_sym_declare] = ACTIONS(686), - [anon_sym_typeset] = ACTIONS(686), - [anon_sym_export] = ACTIONS(686), - [anon_sym_readonly] = ACTIONS(686), - [anon_sym_local] = ACTIONS(686), - [anon_sym_unset] = ACTIONS(689), - [anon_sym_unsetenv] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(651), - [anon_sym_LT_AMP] = ACTIONS(651), - [anon_sym_GT_AMP] = ACTIONS(651), - [anon_sym_GT_PIPE] = ACTIONS(651), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(648), - [anon_sym_DOLLAR] = ACTIONS(692), - [sym__special_character] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(698), - [sym_raw_string] = ACTIONS(701), - [sym_ansi_c_string] = ACTIONS(701), - [aux_sym_number_token1] = ACTIONS(704), - [aux_sym_number_token2] = ACTIONS(707), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(716), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(719), - [anon_sym_LT_LPAREN] = ACTIONS(722), - [anon_sym_GT_LPAREN] = ACTIONS(722), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(725), - [sym_file_descriptor] = ACTIONS(728), - [sym_variable_name] = ACTIONS(731), - [sym__brace_start] = ACTIONS(734), - }, - [41] = { - [sym__statements] = STATE(4229), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_SEMI_AMP] = ACTIONS(490), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(492), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [42] = { - [sym__statements] = STATE(4261), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(739), - [anon_sym_SEMI_AMP] = ACTIONS(518), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(518), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [43] = { - [sym__statements] = STATE(4211), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(741), - [anon_sym_SEMI_AMP] = ACTIONS(496), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(498), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [44] = { - [sym__statements] = STATE(4240), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(743), - [anon_sym_SEMI_AMP] = ACTIONS(536), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(536), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [45] = { - [sym__statements] = STATE(4269), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(745), - [anon_sym_SEMI_AMP] = ACTIONS(504), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(506), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [46] = { - [sym__statements] = STATE(4220), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_SEMI_AMP] = ACTIONS(528), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(530), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [47] = { - [sym__statements] = STATE(4265), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_SEMI_AMP] = ACTIONS(522), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(524), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [48] = { - [sym__statements] = STATE(4221), - [sym_redirected_statement] = STATE(2748), - [sym_for_statement] = STATE(2748), - [sym_c_style_for_statement] = STATE(2748), - [sym_while_statement] = STATE(2748), - [sym_if_statement] = STATE(2748), - [sym_case_statement] = STATE(2748), - [sym_function_definition] = STATE(2748), - [sym_compound_statement] = STATE(2748), - [sym_subshell] = STATE(2748), - [sym_pipeline] = STATE(2748), - [sym_list] = STATE(2748), - [sym_negated_command] = STATE(2748), - [sym_test_command] = STATE(2748), - [sym_declaration_command] = STATE(2748), - [sym_unset_command] = STATE(2748), - [sym_command] = STATE(2748), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(624), - [sym_variable_assignments] = STATE(2748), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(298), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_SEMI_AMP] = ACTIONS(510), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(512), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [49] = { - [sym__terminated_statement] = STATE(59), - [sym_redirected_statement] = STATE(2912), - [sym_for_statement] = STATE(2912), - [sym_c_style_for_statement] = STATE(2912), - [sym_while_statement] = STATE(2912), - [sym_do_group] = STATE(3008), - [sym_if_statement] = STATE(2912), - [sym_case_statement] = STATE(2912), - [sym_function_definition] = STATE(2912), - [sym_compound_statement] = STATE(2912), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2912), - [sym_list] = STATE(2912), - [sym_negated_command] = STATE(2912), - [sym_test_command] = STATE(2912), - [sym_declaration_command] = STATE(2912), - [sym_unset_command] = STATE(2912), - [sym_command] = STATE(2912), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(765), - [sym_variable_assignments] = STATE(2912), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_while_statement_repeat1] = STATE(59), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(755), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [50] = { - [aux_sym__statements2] = STATE(51), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(757), - [anon_sym_elif] = ACTIONS(757), - [anon_sym_else] = ACTIONS(757), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [51] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(759), - [anon_sym_elif] = ACTIONS(759), - [anon_sym_else] = ACTIONS(759), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [52] = { - [sym__terminated_statement] = STATE(59), - [sym_redirected_statement] = STATE(2912), - [sym_for_statement] = STATE(2912), - [sym_c_style_for_statement] = STATE(2912), - [sym_while_statement] = STATE(2912), - [sym_do_group] = STATE(3605), - [sym_if_statement] = STATE(2912), - [sym_case_statement] = STATE(2912), - [sym_function_definition] = STATE(2912), - [sym_compound_statement] = STATE(2912), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2912), - [sym_list] = STATE(2912), - [sym_negated_command] = STATE(2912), - [sym_test_command] = STATE(2912), - [sym_declaration_command] = STATE(2912), - [sym_unset_command] = STATE(2912), - [sym_command] = STATE(2912), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(765), - [sym_variable_assignments] = STATE(2912), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_while_statement_repeat1] = STATE(59), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(761), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [53] = { - [sym__terminated_statement] = STATE(59), - [sym_redirected_statement] = STATE(2912), - [sym_for_statement] = STATE(2912), - [sym_c_style_for_statement] = STATE(2912), - [sym_while_statement] = STATE(2912), - [sym_do_group] = STATE(2993), - [sym_if_statement] = STATE(2912), - [sym_case_statement] = STATE(2912), - [sym_function_definition] = STATE(2912), - [sym_compound_statement] = STATE(2912), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2912), - [sym_list] = STATE(2912), - [sym_negated_command] = STATE(2912), - [sym_test_command] = STATE(2912), - [sym_declaration_command] = STATE(2912), - [sym_unset_command] = STATE(2912), - [sym_command] = STATE(2912), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(765), - [sym_variable_assignments] = STATE(2912), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_while_statement_repeat1] = STATE(59), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(763), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [54] = { - [sym__statements] = STATE(4521), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [55] = { - [sym__statements] = STATE(4670), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [56] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(785), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [57] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(787), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [58] = { - [sym__statements] = STATE(4521), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(789), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [59] = { - [sym__terminated_statement] = STATE(59), - [sym_redirected_statement] = STATE(2912), - [sym_for_statement] = STATE(2912), - [sym_c_style_for_statement] = STATE(2912), - [sym_while_statement] = STATE(2912), - [sym_if_statement] = STATE(2912), - [sym_case_statement] = STATE(2912), - [sym_function_definition] = STATE(2912), - [sym_compound_statement] = STATE(2912), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2912), - [sym_list] = STATE(2912), - [sym_negated_command] = STATE(2912), - [sym_test_command] = STATE(2912), - [sym_declaration_command] = STATE(2912), - [sym_unset_command] = STATE(2912), - [sym_command] = STATE(2912), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(765), - [sym_variable_assignments] = STATE(2912), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_while_statement_repeat1] = STATE(59), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(791), - [anon_sym_for] = ACTIONS(794), - [anon_sym_select] = ACTIONS(797), - [anon_sym_LPAREN_LPAREN] = ACTIONS(800), - [anon_sym_GT_GT] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_while] = ACTIONS(812), - [anon_sym_until] = ACTIONS(812), - [anon_sym_do] = ACTIONS(815), - [anon_sym_if] = ACTIONS(817), - [anon_sym_case] = ACTIONS(820), - [anon_sym_function] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(826), - [anon_sym_BANG] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_LBRACK_LBRACK] = ACTIONS(835), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_typeset] = ACTIONS(838), - [anon_sym_export] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_local] = ACTIONS(838), - [anon_sym_unset] = ACTIONS(841), - [anon_sym_unsetenv] = ACTIONS(841), - [anon_sym_AMP_GT] = ACTIONS(806), - [anon_sym_AMP_GT_GT] = ACTIONS(803), - [anon_sym_LT_AMP] = ACTIONS(803), - [anon_sym_GT_AMP] = ACTIONS(803), - [anon_sym_GT_PIPE] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(844), - [sym__special_character] = ACTIONS(847), - [anon_sym_DQUOTE] = ACTIONS(850), - [sym_raw_string] = ACTIONS(853), - [sym_ansi_c_string] = ACTIONS(853), - [aux_sym_number_token1] = ACTIONS(856), - [aux_sym_number_token2] = ACTIONS(859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(862), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(865), - [anon_sym_BQUOTE] = ACTIONS(868), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(871), - [anon_sym_LT_LPAREN] = ACTIONS(874), - [anon_sym_GT_LPAREN] = ACTIONS(874), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(877), - [sym_file_descriptor] = ACTIONS(880), - [sym_variable_name] = ACTIONS(883), - [sym__brace_start] = ACTIONS(886), - }, - [60] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(889), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [61] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(891), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [62] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(893), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [63] = { - [sym__statements] = STATE(4898), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [64] = { - [sym__statements] = STATE(4466), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [65] = { - [sym__statements] = STATE(4652), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [66] = { - [sym__statements] = STATE(4421), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [67] = { - [sym__statements] = STATE(4423), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [68] = { - [sym__statements] = STATE(4428), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1568), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [69] = { - [sym__statements] = STATE(4433), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [70] = { - [sym__statements] = STATE(4651), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [71] = { - [sym__statements] = STATE(4436), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [72] = { - [sym__statements] = STATE(4439), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1562), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [73] = { - [sym__statements] = STATE(4446), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [74] = { - [sym__statements] = STATE(4447), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [75] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1552), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [76] = { - [sym__statements] = STATE(4456), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [77] = { - [sym__statements] = STATE(4457), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [78] = { - [aux_sym__statements2] = STATE(201), - [sym_redirected_statement] = STATE(2914), - [sym_for_statement] = STATE(2914), - [sym_c_style_for_statement] = STATE(2914), - [sym_while_statement] = STATE(2914), - [sym_if_statement] = STATE(2914), - [sym_case_statement] = STATE(2914), - [sym_function_definition] = STATE(2914), - [sym_compound_statement] = STATE(2914), - [sym_subshell] = STATE(2914), - [sym_pipeline] = STATE(2914), - [sym_list] = STATE(2914), - [sym_negated_command] = STATE(2914), - [sym_test_command] = STATE(2914), - [sym_declaration_command] = STATE(2914), - [sym_unset_command] = STATE(2914), - [sym_command] = STATE(2914), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(764), - [sym_variable_assignments] = STATE(2914), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(905), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [79] = { - [sym__statements] = STATE(4461), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1550), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [80] = { - [sym__statements] = STATE(4649), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [81] = { - [sym__statements] = STATE(4471), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [82] = { - [sym__statements] = STATE(4472), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [83] = { - [sym__statements] = STATE(4473), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1514), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [84] = { - [sym__statements] = STATE(4670), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [85] = { - [sym__statements] = STATE(4485), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [86] = { - [sym__statements] = STATE(4487), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [87] = { - [sym__terminated_statement] = STATE(52), - [sym_redirected_statement] = STATE(2912), - [sym_for_statement] = STATE(2912), - [sym_c_style_for_statement] = STATE(2912), - [sym_while_statement] = STATE(2912), - [sym_if_statement] = STATE(2912), - [sym_case_statement] = STATE(2912), - [sym_function_definition] = STATE(2912), - [sym_compound_statement] = STATE(2912), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2912), - [sym_list] = STATE(2912), - [sym_negated_command] = STATE(2912), - [sym_test_command] = STATE(2912), - [sym_declaration_command] = STATE(2912), - [sym_unset_command] = STATE(2912), - [sym_command] = STATE(2912), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(765), - [sym_variable_assignments] = STATE(2912), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_while_statement_repeat1] = STATE(52), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [88] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(907), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [89] = { - [sym__statements] = STATE(4490), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [90] = { - [sym__statements] = STATE(4491), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1490), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [91] = { - [sym__statements] = STATE(4505), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [92] = { - [sym__statements] = STATE(4508), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [93] = { - [aux_sym__statements2] = STATE(88), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(909), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [94] = { - [aux_sym__statements2] = STATE(201), - [sym_redirected_statement] = STATE(2914), - [sym_for_statement] = STATE(2914), - [sym_c_style_for_statement] = STATE(2914), - [sym_while_statement] = STATE(2914), - [sym_if_statement] = STATE(2914), - [sym_case_statement] = STATE(2914), - [sym_function_definition] = STATE(2914), - [sym_compound_statement] = STATE(2914), - [sym_subshell] = STATE(2914), - [sym_pipeline] = STATE(2914), - [sym_list] = STATE(2914), - [sym_negated_command] = STATE(2914), - [sym_test_command] = STATE(2914), - [sym_declaration_command] = STATE(2914), - [sym_unset_command] = STATE(2914), - [sym_command] = STATE(2914), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(764), - [sym_variable_assignments] = STATE(2914), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [95] = { - [sym__statements] = STATE(4509), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [96] = { - [sym__statements] = STATE(4510), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1543), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [97] = { - [sym__statements] = STATE(4518), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [98] = { - [aux_sym__statements2] = STATE(94), - [sym_redirected_statement] = STATE(2956), - [sym_for_statement] = STATE(2956), - [sym_c_style_for_statement] = STATE(2956), - [sym_while_statement] = STATE(2956), - [sym_if_statement] = STATE(2956), - [sym_case_statement] = STATE(2956), - [sym_function_definition] = STATE(2956), - [sym_compound_statement] = STATE(2956), - [sym_subshell] = STATE(2956), - [sym_pipeline] = STATE(2956), - [sym_list] = STATE(2956), - [sym_negated_command] = STATE(2956), - [sym_test_command] = STATE(2956), - [sym_declaration_command] = STATE(2956), - [sym_unset_command] = STATE(2956), - [sym_command] = STATE(2956), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(755), - [sym_variable_assignments] = STATE(2956), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [99] = { - [sym__statements] = STATE(4520), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [100] = { - [sym__statements] = STATE(4522), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [101] = { - [sym__statements] = STATE(4527), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1474), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [102] = { - [sym__statements] = STATE(4538), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [103] = { - [sym__statements] = STATE(4670), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [104] = { - [sym__statements] = STATE(4539), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [105] = { - [sym__statements] = STATE(4540), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [106] = { - [sym__statements] = STATE(4545), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1477), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [107] = { - [sym__terminated_statement] = STATE(49), - [sym_redirected_statement] = STATE(2912), - [sym_for_statement] = STATE(2912), - [sym_c_style_for_statement] = STATE(2912), - [sym_while_statement] = STATE(2912), - [sym_if_statement] = STATE(2912), - [sym_case_statement] = STATE(2912), - [sym_function_definition] = STATE(2912), - [sym_compound_statement] = STATE(2912), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2912), - [sym_list] = STATE(2912), - [sym_negated_command] = STATE(2912), - [sym_test_command] = STATE(2912), - [sym_declaration_command] = STATE(2912), - [sym_unset_command] = STATE(2912), - [sym_command] = STATE(2912), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(765), - [sym_variable_assignments] = STATE(2912), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_while_statement_repeat1] = STATE(49), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [108] = { - [sym__statements] = STATE(4555), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [109] = { - [sym__statements] = STATE(4557), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [110] = { - [sym__statements] = STATE(4558), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [111] = { - [sym__statements] = STATE(4561), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1481), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [112] = { - [sym__statements] = STATE(4570), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [113] = { - [sym__statements] = STATE(4501), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1553), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [114] = { - [sym__statements] = STATE(4573), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [115] = { - [sym__statements] = STATE(4574), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [116] = { - [sym__statements] = STATE(4582), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1494), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [117] = { - [sym__statements] = STATE(4603), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [118] = { - [sym__statements] = STATE(4492), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [119] = { - [sym__statements] = STATE(4605), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [120] = { - [sym__statements] = STATE(4606), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [121] = { - [sym__statements] = STATE(4486), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [122] = { - [sym__statements] = STATE(4607), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1508), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [123] = { - [sym__statements] = STATE(4763), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [124] = { - [sym__statements] = STATE(4616), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [125] = { - [sym__statements] = STATE(4529), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [126] = { - [sym__statements] = STATE(4623), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [127] = { - [sym__statements] = STATE(4627), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1509), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [128] = { - [sym__statements] = STATE(4642), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [129] = { - [sym__statements] = STATE(4643), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [130] = { - [sym__statements] = STATE(4645), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [131] = { - [sym__statements] = STATE(4653), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1536), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [132] = { - [sym__statements] = STATE(4672), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [133] = { - [sym__statements] = STATE(4484), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [134] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(915), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [135] = { - [sym__statements] = STATE(4676), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [136] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(917), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [137] = { - [sym__statements] = STATE(4677), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [138] = { - [sym__statements] = STATE(4678), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1571), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [139] = { - [sym__statements] = STATE(4688), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [140] = { - [sym__statements] = STATE(4689), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [141] = { - [aux_sym__statements2] = STATE(134), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(919), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [142] = { - [aux_sym__statements2] = STATE(201), - [sym_redirected_statement] = STATE(2914), - [sym_for_statement] = STATE(2914), - [sym_c_style_for_statement] = STATE(2914), - [sym_while_statement] = STATE(2914), - [sym_if_statement] = STATE(2914), - [sym_case_statement] = STATE(2914), - [sym_function_definition] = STATE(2914), - [sym_compound_statement] = STATE(2914), - [sym_subshell] = STATE(2914), - [sym_pipeline] = STATE(2914), - [sym_list] = STATE(2914), - [sym_negated_command] = STATE(2914), - [sym_test_command] = STATE(2914), - [sym_declaration_command] = STATE(2914), - [sym_unset_command] = STATE(2914), - [sym_command] = STATE(2914), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(764), - [sym_variable_assignments] = STATE(2914), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [143] = { - [aux_sym__statements2] = STATE(142), - [sym_redirected_statement] = STATE(2936), - [sym_for_statement] = STATE(2936), - [sym_c_style_for_statement] = STATE(2936), - [sym_while_statement] = STATE(2936), - [sym_if_statement] = STATE(2936), - [sym_case_statement] = STATE(2936), - [sym_function_definition] = STATE(2936), - [sym_compound_statement] = STATE(2936), - [sym_subshell] = STATE(2936), - [sym_pipeline] = STATE(2936), - [sym_list] = STATE(2936), - [sym_negated_command] = STATE(2936), - [sym_test_command] = STATE(2936), - [sym_declaration_command] = STATE(2936), - [sym_unset_command] = STATE(2936), - [sym_command] = STATE(2936), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(732), - [sym_variable_assignments] = STATE(2936), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [144] = { - [sym__statements] = STATE(4690), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [145] = { - [sym__statements] = STATE(4694), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1556), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [146] = { - [sym__statements] = STATE(4713), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [147] = { - [sym__statements] = STATE(4521), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [148] = { - [sym__statements] = STATE(4497), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1563), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [149] = { - [sym__statements] = STATE(4715), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [150] = { - [sym__statements] = STATE(4500), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [151] = { - [sym__statements] = STATE(4717), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [152] = { - [sym__statements] = STATE(4718), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1554), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [153] = { - [sym__statements] = STATE(4733), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [154] = { - [sym__statements] = STATE(4511), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [155] = { - [sym__statements] = STATE(4735), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [156] = { - [sym__statements] = STATE(4736), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [157] = { - [sym__statements] = STATE(4738), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1541), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [158] = { - [sym__statements] = STATE(4749), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [159] = { - [sym__statements] = STATE(4750), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [160] = { - [sym__statements] = STATE(4751), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [161] = { - [sym__statements] = STATE(4523), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [162] = { - [sym__statements] = STATE(4754), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [163] = { - [sym__statements] = STATE(4764), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [164] = { - [sym__statements] = STATE(4765), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [165] = { - [sym__statements] = STATE(4766), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [166] = { - [sym__statements] = STATE(4772), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1493), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [167] = { - [sym__statements] = STATE(4782), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [168] = { - [sym__statements] = STATE(4783), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [169] = { - [sym__statements] = STATE(4784), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [170] = { - [sym__statements] = STATE(4786), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1478), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [171] = { - [sym__statements] = STATE(4793), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [172] = { - [sym__statements] = STATE(4794), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [173] = { - [sym__statements] = STATE(4795), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [174] = { - [sym__statements] = STATE(4796), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1476), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [175] = { - [sym__statements] = STATE(4803), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [176] = { - [sym__statements] = STATE(4804), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [177] = { - [sym__statements] = STATE(4805), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [178] = { - [sym__statements] = STATE(4806), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1464), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [179] = { - [sym__statements] = STATE(4816), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [180] = { - [sym__statements] = STATE(4817), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [181] = { - [sym__statements] = STATE(4818), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [182] = { - [sym__statements] = STATE(4819), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1453), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [183] = { - [sym__statements] = STATE(4826), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [184] = { - [sym__statements] = STATE(4737), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1559), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [185] = { - [sym__statements] = STATE(4827), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [186] = { - [aux_sym__statements2] = STATE(136), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(925), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [187] = { - [sym__statements] = STATE(4828), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [188] = { - [sym__statements] = STATE(4831), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1450), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [189] = { - [sym__statements] = STATE(4744), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [190] = { - [aux_sym__statements2] = STATE(198), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(927), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [191] = { - [sym__statements] = STATE(4837), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [192] = { - [sym__statements] = STATE(4409), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [193] = { - [sym__statements] = STATE(4408), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [194] = { - [sym__statements] = STATE(4838), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [195] = { - [sym__statements] = STATE(4839), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [196] = { - [sym__statements] = STATE(4840), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1452), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [197] = { - [sym__statements] = STATE(4857), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [198] = { - [aux_sym__statements2] = STATE(40), - [sym_redirected_statement] = STATE(2934), - [sym_for_statement] = STATE(2934), - [sym_c_style_for_statement] = STATE(2934), - [sym_while_statement] = STATE(2934), - [sym_if_statement] = STATE(2934), - [sym_case_statement] = STATE(2934), - [sym_function_definition] = STATE(2934), - [sym_compound_statement] = STATE(2934), - [sym_subshell] = STATE(2934), - [sym_pipeline] = STATE(2934), - [sym_list] = STATE(2934), - [sym_negated_command] = STATE(2934), - [sym_test_command] = STATE(2934), - [sym_declaration_command] = STATE(2934), - [sym_unset_command] = STATE(2934), - [sym_command] = STATE(2934), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(759), - [sym_variable_assignments] = STATE(2934), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(929), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [199] = { - [sym__statements] = STATE(4858), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [200] = { - [sym__statements] = STATE(4859), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [201] = { - [aux_sym__statements2] = STATE(201), - [sym_redirected_statement] = STATE(2914), - [sym_for_statement] = STATE(2914), - [sym_c_style_for_statement] = STATE(2914), - [sym_while_statement] = STATE(2914), - [sym_if_statement] = STATE(2914), - [sym_case_statement] = STATE(2914), - [sym_function_definition] = STATE(2914), - [sym_compound_statement] = STATE(2914), - [sym_subshell] = STATE(2914), - [sym_pipeline] = STATE(2914), - [sym_list] = STATE(2914), - [sym_negated_command] = STATE(2914), - [sym_test_command] = STATE(2914), - [sym_declaration_command] = STATE(2914), - [sym_unset_command] = STATE(2914), - [sym_command] = STATE(2914), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(764), - [sym_variable_assignments] = STATE(2914), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(639), - [anon_sym_for] = ACTIONS(642), - [anon_sym_select] = ACTIONS(645), - [anon_sym_LPAREN_LPAREN] = ACTIONS(648), - [anon_sym_GT_GT] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_while] = ACTIONS(660), - [anon_sym_until] = ACTIONS(660), - [anon_sym_if] = ACTIONS(665), - [anon_sym_case] = ACTIONS(668), - [anon_sym_function] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACK_LBRACK] = ACTIONS(683), - [anon_sym_declare] = ACTIONS(686), - [anon_sym_typeset] = ACTIONS(686), - [anon_sym_export] = ACTIONS(686), - [anon_sym_readonly] = ACTIONS(686), - [anon_sym_local] = ACTIONS(686), - [anon_sym_unset] = ACTIONS(689), - [anon_sym_unsetenv] = ACTIONS(689), - [anon_sym_AMP_GT] = ACTIONS(654), - [anon_sym_AMP_GT_GT] = ACTIONS(651), - [anon_sym_LT_AMP] = ACTIONS(651), - [anon_sym_GT_AMP] = ACTIONS(651), - [anon_sym_GT_PIPE] = ACTIONS(651), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(648), - [anon_sym_DOLLAR] = ACTIONS(692), - [sym__special_character] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(698), - [sym_raw_string] = ACTIONS(701), - [sym_ansi_c_string] = ACTIONS(701), - [aux_sym_number_token1] = ACTIONS(704), - [aux_sym_number_token2] = ACTIONS(707), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(716), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(719), - [anon_sym_LT_LPAREN] = ACTIONS(722), - [anon_sym_GT_LPAREN] = ACTIONS(722), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(725), - [sym_file_descriptor] = ACTIONS(728), - [sym_variable_name] = ACTIONS(731), - [sym__brace_start] = ACTIONS(734), - }, - [202] = { - [sym__statements] = STATE(4860), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1456), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [203] = { - [sym__statements] = STATE(4758), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [204] = { - [sym__statements] = STATE(4767), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [205] = { - [sym__statements] = STATE(4869), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [206] = { - [sym__statements] = STATE(4870), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [207] = { - [sym__statements] = STATE(4871), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [208] = { - [sym__statements] = STATE(4872), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1462), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [209] = { - [sym__statements] = STATE(4882), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [210] = { - [sym__statements] = STATE(4883), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [211] = { - [sym__statements] = STATE(4884), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [212] = { - [sym__statements] = STATE(4912), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1549), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [213] = { - [sym__statements] = STATE(4924), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [214] = { - [sym__statements] = STATE(4886), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1466), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [215] = { - [sym__statements] = STATE(4895), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [216] = { - [sym__statements] = STATE(4897), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [217] = { - [sym__statements] = STATE(4930), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [218] = { - [sym__statements] = STATE(4931), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [219] = { - [sym__statements] = STATE(4899), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1469), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [220] = { - [sym__statements] = STATE(4911), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [221] = { - [sym__statements] = STATE(4849), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [222] = { - [sym__statements] = STATE(4915), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [223] = { - [sym__statements] = STATE(4917), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1479), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [224] = { - [sym__statements] = STATE(4929), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [225] = { - [sym__statements] = STATE(4932), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [226] = { - [sym__statements] = STATE(4980), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [227] = { - [sym__statements] = STATE(4982), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1483), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [228] = { - [sym__statements] = STATE(4925), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [229] = { - [sym__statements] = STATE(4922), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [230] = { - [sym__statements] = STATE(4921), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [231] = { - [aux_sym__statements2] = STATE(78), - [sym_redirected_statement] = STATE(2909), - [sym_for_statement] = STATE(2909), - [sym_c_style_for_statement] = STATE(2909), - [sym_while_statement] = STATE(2909), - [sym_if_statement] = STATE(2909), - [sym_case_statement] = STATE(2909), - [sym_function_definition] = STATE(2909), - [sym_compound_statement] = STATE(2909), - [sym_subshell] = STATE(2909), - [sym_pipeline] = STATE(2909), - [sym_list] = STATE(2909), - [sym_negated_command] = STATE(2909), - [sym_test_command] = STATE(2909), - [sym_declaration_command] = STATE(2909), - [sym_unset_command] = STATE(2909), - [sym_command] = STATE(2909), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(763), - [sym_variable_assignments] = STATE(2909), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [232] = { - [sym__statements] = STATE(4918), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1489), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [233] = { - [sym__statements] = STATE(4889), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [234] = { - [sym__statements] = STATE(4887), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [235] = { - [sym__statements] = STATE(4885), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [236] = { - [sym__statements] = STATE(4879), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1492), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [237] = { - [sym__statements] = STATE(4853), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [238] = { - [sym__statements] = STATE(4852), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [239] = { - [sym__statements] = STATE(4785), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [240] = { - [sym__statements] = STATE(4666), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1540), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [241] = { - [sym__statements] = STATE(4846), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1498), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [242] = { - [sym__statements] = STATE(4811), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [243] = { - [sym__statements] = STATE(4923), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [244] = { - [sym__statements] = STATE(4992), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [245] = { - [sym__terminated_statement] = STATE(53), - [sym_redirected_statement] = STATE(2912), - [sym_for_statement] = STATE(2912), - [sym_c_style_for_statement] = STATE(2912), - [sym_while_statement] = STATE(2912), - [sym_if_statement] = STATE(2912), - [sym_case_statement] = STATE(2912), - [sym_function_definition] = STATE(2912), - [sym_compound_statement] = STATE(2912), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2912), - [sym_list] = STATE(2912), - [sym_negated_command] = STATE(2912), - [sym_test_command] = STATE(2912), - [sym_declaration_command] = STATE(2912), - [sym_unset_command] = STATE(2912), - [sym_command] = STATE(2912), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(765), - [sym_variable_assignments] = STATE(2912), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_while_statement_repeat1] = STATE(53), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [246] = { - [sym__statements] = STATE(4810), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [247] = { - [sym__statements] = STATE(4808), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [248] = { - [sym__statements] = STATE(4800), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1501), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [249] = { - [sym__statements] = STATE(4776), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [250] = { - [sym__statements] = STATE(4773), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [251] = { - [sym__statements] = STATE(4769), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [252] = { - [sym__statements] = STATE(4759), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1503), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [253] = { - [sym__statements] = STATE(4729), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [254] = { - [sym__statements] = STATE(4725), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [255] = { - [sym__statements] = STATE(4719), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [256] = { - [sym__statements] = STATE(4703), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1510), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [257] = { - [sym__statements] = STATE(5040), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [258] = { - [sym__statements] = STATE(4664), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [259] = { - [sym__statements] = STATE(4663), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [260] = { - [sym__statements] = STATE(4876), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1538), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [261] = { - [sym__statements] = STATE(4619), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [262] = { - [sym__statements] = STATE(4648), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1512), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [263] = { - [sym__statements] = STATE(4597), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [264] = { - [sym__statements] = STATE(4594), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [265] = { - [sym__statements] = STATE(4589), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [266] = { - [sym__statements] = STATE(4586), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1516), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [267] = { - [sym__statements] = STATE(4865), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [268] = { - [sym__statements] = STATE(4702), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1455), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [269] = { - [sym__statements] = STATE(4544), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [270] = { - [sym__statements] = STATE(4700), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [271] = { - [sym__statements] = STATE(4535), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [272] = { - [sym__statements] = STATE(4697), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [273] = { - [sym__statements] = STATE(4530), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [274] = { - [sym__statements] = STATE(4658), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [275] = { - [sym__statements] = STATE(4416), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1567), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [276] = { - [sym__statements] = STATE(4528), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1523), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [277] = { - [sym__statements] = STATE(4655), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1535), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [278] = { - [sym__statements] = STATE(4465), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [279] = { - [sym__statements] = STATE(4462), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [280] = { - [sym__statements] = STATE(4459), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1526), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [281] = { - [sym__statements] = STATE(4413), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [282] = { - [sym__statements] = STATE(4634), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [283] = { - [sym__statements] = STATE(4448), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [284] = { - [sym__statements] = STATE(4468), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1529), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [285] = { - [sym__statements] = STATE(4595), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [286] = { - [sym__statements] = STATE(4609), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [287] = { - [sym__statements] = STATE(4901), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [288] = { - [sym__statements] = STATE(4646), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1531), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [289] = { - [sym__statements] = STATE(4726), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [290] = { - [sym__statements] = STATE(4753), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [291] = { - [sym__statements] = STATE(4777), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [292] = { - [sym__statements] = STATE(4667), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1534), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [293] = { - [sym__statements] = STATE(4843), - [sym_redirected_statement] = STATE(2833), - [sym_for_statement] = STATE(2833), - [sym_c_style_for_statement] = STATE(2833), - [sym_while_statement] = STATE(2833), - [sym_if_statement] = STATE(2833), - [sym_case_statement] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_compound_statement] = STATE(2833), - [sym_subshell] = STATE(2833), - [sym_pipeline] = STATE(2833), - [sym_list] = STATE(2833), - [sym_negated_command] = STATE(2833), - [sym_test_command] = STATE(2833), - [sym_declaration_command] = STATE(2833), - [sym_unset_command] = STATE(2833), - [sym_command] = STATE(2833), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(644), - [sym_variable_assignments] = STATE(2833), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [294] = { - [sym__statements] = STATE(4850), - [sym_redirected_statement] = STATE(2807), - [sym_for_statement] = STATE(2807), - [sym_c_style_for_statement] = STATE(2807), - [sym_while_statement] = STATE(2807), - [sym_if_statement] = STATE(2807), - [sym_case_statement] = STATE(2807), - [sym_function_definition] = STATE(2807), - [sym_compound_statement] = STATE(2807), - [sym_subshell] = STATE(2807), - [sym_pipeline] = STATE(2807), - [sym_list] = STATE(2807), - [sym_negated_command] = STATE(2807), - [sym_test_command] = STATE(2807), - [sym_declaration_command] = STATE(2807), - [sym_unset_command] = STATE(2807), - [sym_command] = STATE(2807), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(742), - [sym_variable_assignments] = STATE(2807), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [295] = { - [sym_redirected_statement] = STATE(2798), - [sym_for_statement] = STATE(2798), - [sym_c_style_for_statement] = STATE(2798), - [sym_while_statement] = STATE(2798), - [sym_if_statement] = STATE(2798), - [sym_case_statement] = STATE(2798), - [sym_function_definition] = STATE(2798), - [sym_compound_statement] = STATE(2798), - [sym_subshell] = STATE(2798), - [sym_pipeline] = STATE(2798), - [sym_list] = STATE(2798), - [sym_negated_command] = STATE(2798), - [sym_test_command] = STATE(2798), - [sym_declaration_command] = STATE(2798), - [sym_unset_command] = STATE(2798), - [sym_command] = STATE(2798), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(653), - [sym_variable_assignments] = STATE(2798), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym__statements_repeat1] = STATE(299), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [296] = { - [sym_redirected_statement] = STATE(2855), - [sym_for_statement] = STATE(2855), - [sym_c_style_for_statement] = STATE(2855), - [sym_while_statement] = STATE(2855), - [sym_if_statement] = STATE(2855), - [sym_case_statement] = STATE(2855), - [sym_function_definition] = STATE(2855), - [sym_compound_statement] = STATE(2855), - [sym_subshell] = STATE(2855), - [sym_pipeline] = STATE(2855), - [sym_list] = STATE(2855), - [sym_negated_command] = STATE(2855), - [sym_test_command] = STATE(2855), - [sym_declaration_command] = STATE(2855), - [sym_unset_command] = STATE(2855), - [sym_command] = STATE(2855), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(743), - [sym_variable_assignments] = STATE(2855), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(299), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [297] = { - [sym_redirected_statement] = STATE(2716), - [sym_for_statement] = STATE(2716), - [sym_c_style_for_statement] = STATE(2716), - [sym_while_statement] = STATE(2716), - [sym_if_statement] = STATE(2716), - [sym_case_statement] = STATE(2716), - [sym_function_definition] = STATE(2716), - [sym_compound_statement] = STATE(2716), - [sym_subshell] = STATE(2716), - [sym_pipeline] = STATE(2716), - [sym_list] = STATE(2716), - [sym_negated_command] = STATE(2716), - [sym_test_command] = STATE(2716), - [sym_declaration_command] = STATE(2716), - [sym_unset_command] = STATE(2716), - [sym_command] = STATE(2716), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(608), - [sym_variable_assignments] = STATE(2716), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym__statements_repeat1] = STATE(299), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [298] = { - [sym_redirected_statement] = STATE(2727), - [sym_for_statement] = STATE(2727), - [sym_c_style_for_statement] = STATE(2727), - [sym_while_statement] = STATE(2727), - [sym_if_statement] = STATE(2727), - [sym_case_statement] = STATE(2727), - [sym_function_definition] = STATE(2727), - [sym_compound_statement] = STATE(2727), - [sym_subshell] = STATE(2727), - [sym_pipeline] = STATE(2727), - [sym_list] = STATE(2727), - [sym_negated_command] = STATE(2727), - [sym_test_command] = STATE(2727), - [sym_declaration_command] = STATE(2727), - [sym_unset_command] = STATE(2727), - [sym_command] = STATE(2727), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(632), - [sym_variable_assignments] = STATE(2727), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym__statements_repeat1] = STATE(299), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [299] = { - [sym_redirected_statement] = STATE(2954), - [sym_for_statement] = STATE(2954), - [sym_c_style_for_statement] = STATE(2954), - [sym_while_statement] = STATE(2954), - [sym_if_statement] = STATE(2954), - [sym_case_statement] = STATE(2954), - [sym_function_definition] = STATE(2954), - [sym_compound_statement] = STATE(2954), - [sym_subshell] = STATE(2954), - [sym_pipeline] = STATE(2954), - [sym_list] = STATE(2954), - [sym_negated_command] = STATE(2954), - [sym_test_command] = STATE(2954), - [sym_declaration_command] = STATE(2954), - [sym_unset_command] = STATE(2954), - [sym_command] = STATE(2954), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(709), - [sym_variable_assignments] = STATE(2954), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym__statements_repeat1] = STATE(299), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(935), - [anon_sym_for] = ACTIONS(938), - [anon_sym_select] = ACTIONS(941), - [anon_sym_LPAREN_LPAREN] = ACTIONS(944), - [anon_sym_GT_GT] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_while] = ACTIONS(956), - [anon_sym_until] = ACTIONS(956), - [anon_sym_if] = ACTIONS(959), - [anon_sym_case] = ACTIONS(962), - [anon_sym_function] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_LBRACK_LBRACK] = ACTIONS(977), - [anon_sym_declare] = ACTIONS(980), - [anon_sym_typeset] = ACTIONS(980), - [anon_sym_export] = ACTIONS(980), - [anon_sym_readonly] = ACTIONS(980), - [anon_sym_local] = ACTIONS(980), - [anon_sym_unset] = ACTIONS(983), - [anon_sym_unsetenv] = ACTIONS(983), - [anon_sym_AMP_GT] = ACTIONS(950), - [anon_sym_AMP_GT_GT] = ACTIONS(947), - [anon_sym_LT_AMP] = ACTIONS(947), - [anon_sym_GT_AMP] = ACTIONS(947), - [anon_sym_GT_PIPE] = ACTIONS(947), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(986), - [sym__special_character] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_raw_string] = ACTIONS(995), - [sym_ansi_c_string] = ACTIONS(995), - [aux_sym_number_token1] = ACTIONS(998), - [aux_sym_number_token2] = ACTIONS(1001), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1007), - [anon_sym_BQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1013), - [anon_sym_LT_LPAREN] = ACTIONS(1016), - [anon_sym_GT_LPAREN] = ACTIONS(1016), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1019), - [sym_file_descriptor] = ACTIONS(1022), - [sym_variable_name] = ACTIONS(1025), - [sym__brace_start] = ACTIONS(1028), - }, - [300] = { - [sym__terminated_statement] = STATE(4546), - [sym_redirected_statement] = STATE(2959), - [sym_for_statement] = STATE(2959), - [sym_c_style_for_statement] = STATE(2959), - [sym_while_statement] = STATE(2959), - [sym_if_statement] = STATE(2959), - [sym_case_statement] = STATE(2959), - [sym_function_definition] = STATE(2959), - [sym_compound_statement] = STATE(2959), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2959), - [sym_list] = STATE(2959), - [sym_negated_command] = STATE(2959), - [sym_test_command] = STATE(2959), - [sym_declaration_command] = STATE(2959), - [sym_unset_command] = STATE(2959), - [sym_command] = STATE(2959), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(753), - [sym_variable_assignments] = STATE(2959), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [301] = { - [sym__terminated_statement] = STATE(4903), - [sym_redirected_statement] = STATE(2959), - [sym_for_statement] = STATE(2959), - [sym_c_style_for_statement] = STATE(2959), - [sym_while_statement] = STATE(2959), - [sym_if_statement] = STATE(2959), - [sym_case_statement] = STATE(2959), - [sym_function_definition] = STATE(2959), - [sym_compound_statement] = STATE(2959), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2959), - [sym_list] = STATE(2959), - [sym_negated_command] = STATE(2959), - [sym_test_command] = STATE(2959), - [sym_declaration_command] = STATE(2959), - [sym_unset_command] = STATE(2959), - [sym_command] = STATE(2959), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(753), - [sym_variable_assignments] = STATE(2959), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [302] = { - [sym__terminated_statement] = STATE(4639), - [sym_redirected_statement] = STATE(2959), - [sym_for_statement] = STATE(2959), - [sym_c_style_for_statement] = STATE(2959), - [sym_while_statement] = STATE(2959), - [sym_if_statement] = STATE(2959), - [sym_case_statement] = STATE(2959), - [sym_function_definition] = STATE(2959), - [sym_compound_statement] = STATE(2959), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2959), - [sym_list] = STATE(2959), - [sym_negated_command] = STATE(2959), - [sym_test_command] = STATE(2959), - [sym_declaration_command] = STATE(2959), - [sym_unset_command] = STATE(2959), - [sym_command] = STATE(2959), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(753), - [sym_variable_assignments] = STATE(2959), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [303] = { - [sym_redirected_statement] = STATE(2821), - [sym_for_statement] = STATE(2821), - [sym_c_style_for_statement] = STATE(2821), - [sym_while_statement] = STATE(2821), - [sym_if_statement] = STATE(2821), - [sym_case_statement] = STATE(2821), - [sym_function_definition] = STATE(2821), - [sym_compound_statement] = STATE(2821), - [sym_subshell] = STATE(2821), - [sym_pipeline] = STATE(2821), - [sym_list] = STATE(2821), - [sym_negated_command] = STATE(2821), - [sym_test_command] = STATE(2821), - [sym_declaration_command] = STATE(2821), - [sym_unset_command] = STATE(2821), - [sym_command] = STATE(2821), - [sym_command_name] = STATE(473), - [sym_variable_assignment] = STATE(676), - [sym_variable_assignments] = STATE(2821), - [sym_subscript] = STATE(4317), - [sym_file_redirect] = STATE(1499), - [sym_arithmetic_expansion] = STATE(794), - [sym_brace_expression] = STATE(794), - [sym_concatenation] = STATE(1275), - [sym_string] = STATE(794), - [sym_translated_string] = STATE(794), - [sym_number] = STATE(794), - [sym_simple_expansion] = STATE(794), - [sym_expansion] = STATE(794), - [sym_command_substitution] = STATE(794), - [sym_process_substitution] = STATE(794), - [aux_sym__statements_repeat1] = STATE(299), - [aux_sym_redirected_statement_repeat2] = STATE(2998), - [aux_sym_command_repeat1] = STATE(908), - [aux_sym__literal_repeat1] = STATE(1104), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_GT_GT] = ACTIONS(15), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_GT] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(17), - [anon_sym_AMP_GT_GT] = ACTIONS(15), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(15), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym__special_character] = ACTIONS(43), - [anon_sym_DQUOTE] = ACTIONS(45), - [sym_raw_string] = ACTIONS(47), - [sym_ansi_c_string] = ACTIONS(47), - [aux_sym_number_token1] = ACTIONS(49), - [aux_sym_number_token2] = ACTIONS(51), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(55), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(59), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(65), - [sym_file_descriptor] = ACTIONS(67), - [sym_variable_name] = ACTIONS(69), - [sym__brace_start] = ACTIONS(71), - }, - [304] = { - [sym__terminated_statement] = STATE(4760), - [sym_redirected_statement] = STATE(2959), - [sym_for_statement] = STATE(2959), - [sym_c_style_for_statement] = STATE(2959), - [sym_while_statement] = STATE(2959), - [sym_if_statement] = STATE(2959), - [sym_case_statement] = STATE(2959), - [sym_function_definition] = STATE(2959), - [sym_compound_statement] = STATE(2959), - [sym_subshell] = STATE(3370), - [sym_pipeline] = STATE(2959), - [sym_list] = STATE(2959), - [sym_negated_command] = STATE(2959), - [sym_test_command] = STATE(2959), - [sym_declaration_command] = STATE(2959), - [sym_unset_command] = STATE(2959), - [sym_command] = STATE(2959), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(753), - [sym_variable_assignments] = STATE(2959), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [305] = { - [sym_redirected_statement] = STATE(2845), - [sym_for_statement] = STATE(2845), - [sym_c_style_for_statement] = STATE(2845), - [sym_while_statement] = STATE(2845), - [sym_if_statement] = STATE(2845), - [sym_case_statement] = STATE(2845), - [sym_function_definition] = STATE(2845), - [sym_compound_statement] = STATE(2845), - [sym_subshell] = STATE(2845), - [sym_pipeline] = STATE(2845), - [sym_list] = STATE(2845), - [sym_negated_command] = STATE(2845), - [sym_test_command] = STATE(2845), - [sym_declaration_command] = STATE(2845), - [sym_unset_command] = STATE(2845), - [sym_command] = STATE(2845), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(663), - [sym_variable_assignments] = STATE(2845), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [306] = { - [sym_redirected_statement] = STATE(2719), - [sym_for_statement] = STATE(2719), - [sym_c_style_for_statement] = STATE(2719), - [sym_while_statement] = STATE(2719), - [sym_if_statement] = STATE(2719), - [sym_case_statement] = STATE(2719), - [sym_function_definition] = STATE(2719), - [sym_compound_statement] = STATE(2719), - [sym_subshell] = STATE(2719), - [sym_pipeline] = STATE(2719), - [sym_list] = STATE(2719), - [sym_negated_command] = STATE(2719), - [sym_test_command] = STATE(2719), - [sym_declaration_command] = STATE(2719), - [sym_unset_command] = STATE(2719), - [sym_command] = STATE(2719), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(610), - [sym_variable_assignments] = STATE(2719), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [307] = { - [sym_redirected_statement] = STATE(3368), - [sym_for_statement] = STATE(3368), - [sym_c_style_for_statement] = STATE(3368), - [sym_while_statement] = STATE(3368), - [sym_if_statement] = STATE(3368), - [sym_case_statement] = STATE(3368), - [sym_function_definition] = STATE(3368), - [sym_compound_statement] = STATE(3368), - [sym_subshell] = STATE(3368), - [sym_pipeline] = STATE(3368), - [sym_list] = STATE(3368), - [sym_negated_command] = STATE(3368), - [sym_test_command] = STATE(3368), - [sym_declaration_command] = STATE(3368), - [sym_unset_command] = STATE(3368), - [sym_command] = STATE(3368), - [sym_command_name] = STATE(611), - [sym_variable_assignment] = STATE(1322), - [sym_variable_assignments] = STATE(3368), - [sym_subscript] = STATE(4307), - [sym_file_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1544), - [sym_brace_expression] = STATE(1544), - [sym_concatenation] = STATE(1970), - [sym_string] = STATE(1544), - [sym_translated_string] = STATE(1544), - [sym_number] = STATE(1544), - [sym_simple_expansion] = STATE(1544), - [sym_expansion] = STATE(1544), - [sym_command_substitution] = STATE(1544), - [sym_process_substitution] = STATE(1544), - [aux_sym_redirected_statement_repeat2] = STATE(3568), - [aux_sym_command_repeat1] = STATE(896), - [aux_sym__literal_repeat1] = STATE(1731), - [sym_word] = ACTIONS(1031), - [anon_sym_for] = ACTIONS(268), - [anon_sym_select] = ACTIONS(270), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(280), - [anon_sym_until] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_case] = ACTIONS(284), - [anon_sym_function] = ACTIONS(286), - [anon_sym_LBRACE] = ACTIONS(288), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(296), - [anon_sym_declare] = ACTIONS(298), - [anon_sym_typeset] = ACTIONS(298), - [anon_sym_export] = ACTIONS(298), - [anon_sym_readonly] = ACTIONS(298), - [anon_sym_local] = ACTIONS(298), - [anon_sym_unset] = ACTIONS(300), - [anon_sym_unsetenv] = ACTIONS(300), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1035), - [anon_sym_LT_AMP] = ACTIONS(1035), - [anon_sym_GT_AMP] = ACTIONS(1035), - [anon_sym_GT_PIPE] = ACTIONS(1035), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1043), - [sym__special_character] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1047), - [sym_raw_string] = ACTIONS(1049), - [sym_ansi_c_string] = ACTIONS(1049), - [aux_sym_number_token1] = ACTIONS(1051), - [aux_sym_number_token2] = ACTIONS(1053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1061), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1067), - [sym_variable_name] = ACTIONS(330), - [sym__brace_start] = ACTIONS(1069), - }, - [308] = { - [sym_redirected_statement] = STATE(3360), - [sym_for_statement] = STATE(3360), - [sym_c_style_for_statement] = STATE(3360), - [sym_while_statement] = STATE(3360), - [sym_if_statement] = STATE(3360), - [sym_case_statement] = STATE(3360), - [sym_function_definition] = STATE(3360), - [sym_compound_statement] = STATE(3360), - [sym_subshell] = STATE(3360), - [sym_pipeline] = STATE(3360), - [sym_list] = STATE(3360), - [sym_negated_command] = STATE(3360), - [sym_test_command] = STATE(3360), - [sym_declaration_command] = STATE(3360), - [sym_unset_command] = STATE(3360), - [sym_command] = STATE(3360), - [sym_command_name] = STATE(611), - [sym_variable_assignment] = STATE(1324), - [sym_variable_assignments] = STATE(3360), - [sym_subscript] = STATE(4307), - [sym_file_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1544), - [sym_brace_expression] = STATE(1544), - [sym_concatenation] = STATE(1970), - [sym_string] = STATE(1544), - [sym_translated_string] = STATE(1544), - [sym_number] = STATE(1544), - [sym_simple_expansion] = STATE(1544), - [sym_expansion] = STATE(1544), - [sym_command_substitution] = STATE(1544), - [sym_process_substitution] = STATE(1544), - [aux_sym_redirected_statement_repeat2] = STATE(3568), - [aux_sym_command_repeat1] = STATE(896), - [aux_sym__literal_repeat1] = STATE(1731), - [sym_word] = ACTIONS(1031), - [anon_sym_for] = ACTIONS(268), - [anon_sym_select] = ACTIONS(270), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(280), - [anon_sym_until] = ACTIONS(280), - [anon_sym_if] = ACTIONS(282), - [anon_sym_case] = ACTIONS(284), - [anon_sym_function] = ACTIONS(286), - [anon_sym_LBRACE] = ACTIONS(288), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(296), - [anon_sym_declare] = ACTIONS(298), - [anon_sym_typeset] = ACTIONS(298), - [anon_sym_export] = ACTIONS(298), - [anon_sym_readonly] = ACTIONS(298), - [anon_sym_local] = ACTIONS(298), - [anon_sym_unset] = ACTIONS(300), - [anon_sym_unsetenv] = ACTIONS(300), - [anon_sym_AMP_GT] = ACTIONS(1037), - [anon_sym_AMP_GT_GT] = ACTIONS(1035), - [anon_sym_LT_AMP] = ACTIONS(1035), - [anon_sym_GT_AMP] = ACTIONS(1035), - [anon_sym_GT_PIPE] = ACTIONS(1035), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1043), - [sym__special_character] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1047), - [sym_raw_string] = ACTIONS(1049), - [sym_ansi_c_string] = ACTIONS(1049), - [aux_sym_number_token1] = ACTIONS(1051), - [aux_sym_number_token2] = ACTIONS(1053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1061), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1065), - [sym_file_descriptor] = ACTIONS(1067), - [sym_variable_name] = ACTIONS(330), - [sym__brace_start] = ACTIONS(1069), - }, - [309] = { - [sym_redirected_statement] = STATE(3269), - [sym_for_statement] = STATE(3269), - [sym_c_style_for_statement] = STATE(3269), - [sym_while_statement] = STATE(3269), - [sym_if_statement] = STATE(3269), - [sym_case_statement] = STATE(3269), - [sym_function_definition] = STATE(3269), - [sym_compound_statement] = STATE(3269), - [sym_subshell] = STATE(3269), - [sym_pipeline] = STATE(3269), - [sym_list] = STATE(3269), - [sym_negated_command] = STATE(3269), - [sym_test_command] = STATE(3269), - [sym_declaration_command] = STATE(3269), - [sym_unset_command] = STATE(3269), - [sym_command] = STATE(3269), - [sym_command_name] = STATE(597), - [sym_variable_assignment] = STATE(1044), - [sym_variable_assignments] = STATE(3269), - [sym_subscript] = STATE(4311), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(1407), - [sym_brace_expression] = STATE(1407), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(1407), - [sym_translated_string] = STATE(1407), - [sym_number] = STATE(1407), - [sym_simple_expansion] = STATE(1407), - [sym_expansion] = STATE(1407), - [sym_command_substitution] = STATE(1407), - [sym_process_substitution] = STATE(1407), - [aux_sym_redirected_statement_repeat2] = STATE(3487), - [aux_sym_command_repeat1] = STATE(899), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1075), - [anon_sym_GT] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_typeset] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_local] = ACTIONS(1081), - [anon_sym_unset] = ACTIONS(1083), - [anon_sym_unsetenv] = ACTIONS(1083), - [anon_sym_AMP_GT] = ACTIONS(1075), - [anon_sym_AMP_GT_GT] = ACTIONS(1073), - [anon_sym_LT_AMP] = ACTIONS(1073), - [anon_sym_GT_AMP] = ACTIONS(1073), - [anon_sym_GT_PIPE] = ACTIONS(1073), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(1087), - [sym_ansi_c_string] = ACTIONS(1087), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1091), - [sym_variable_name] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(388), - }, - [310] = { - [sym_redirected_statement] = STATE(2945), - [sym_for_statement] = STATE(2945), - [sym_c_style_for_statement] = STATE(2945), - [sym_while_statement] = STATE(2945), - [sym_if_statement] = STATE(2945), - [sym_case_statement] = STATE(2945), - [sym_function_definition] = STATE(2945), - [sym_compound_statement] = STATE(2945), - [sym_subshell] = STATE(2945), - [sym_pipeline] = STATE(2945), - [sym_list] = STATE(2945), - [sym_negated_command] = STATE(2945), - [sym_test_command] = STATE(2945), - [sym_declaration_command] = STATE(2945), - [sym_unset_command] = STATE(2945), - [sym_command] = STATE(2945), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(756), - [sym_variable_assignments] = STATE(2945), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [311] = { - [sym_redirected_statement] = STATE(2905), - [sym_for_statement] = STATE(2905), - [sym_c_style_for_statement] = STATE(2905), - [sym_while_statement] = STATE(2905), - [sym_if_statement] = STATE(2905), - [sym_case_statement] = STATE(2905), - [sym_function_definition] = STATE(2905), - [sym_compound_statement] = STATE(2905), - [sym_subshell] = STATE(2905), - [sym_pipeline] = STATE(2905), - [sym_list] = STATE(2905), - [sym_negated_command] = STATE(2905), - [sym_test_command] = STATE(2905), - [sym_declaration_command] = STATE(2905), - [sym_unset_command] = STATE(2905), - [sym_command] = STATE(2905), - [sym_command_name] = STATE(488), - [sym_variable_assignment] = STATE(754), - [sym_variable_assignments] = STATE(2905), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3101), - [aux_sym_command_repeat1] = STATE(957), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(338), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(356), - [anon_sym_typeset] = ACTIONS(356), - [anon_sym_export] = ACTIONS(356), - [anon_sym_readonly] = ACTIONS(356), - [anon_sym_local] = ACTIONS(356), - [anon_sym_unset] = ACTIONS(358), - [anon_sym_unsetenv] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [312] = { - [sym_redirected_statement] = STATE(2750), - [sym_for_statement] = STATE(2750), - [sym_c_style_for_statement] = STATE(2750), - [sym_while_statement] = STATE(2750), - [sym_if_statement] = STATE(2750), - [sym_case_statement] = STATE(2750), - [sym_function_definition] = STATE(2750), - [sym_compound_statement] = STATE(2750), - [sym_subshell] = STATE(2750), - [sym_pipeline] = STATE(2750), - [sym_list] = STATE(2750), - [sym_negated_command] = STATE(2750), - [sym_test_command] = STATE(2750), - [sym_declaration_command] = STATE(2750), - [sym_unset_command] = STATE(2750), - [sym_command] = STATE(2750), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(631), - [sym_variable_assignments] = STATE(2750), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [313] = { - [sym_redirected_statement] = STATE(2759), - [sym_for_statement] = STATE(2759), - [sym_c_style_for_statement] = STATE(2759), - [sym_while_statement] = STATE(2759), - [sym_if_statement] = STATE(2759), - [sym_case_statement] = STATE(2759), - [sym_function_definition] = STATE(2759), - [sym_compound_statement] = STATE(2759), - [sym_subshell] = STATE(2759), - [sym_pipeline] = STATE(2759), - [sym_list] = STATE(2759), - [sym_negated_command] = STATE(2759), - [sym_test_command] = STATE(2759), - [sym_declaration_command] = STATE(2759), - [sym_unset_command] = STATE(2759), - [sym_command] = STATE(2759), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(625), - [sym_variable_assignments] = STATE(2759), - [sym_subscript] = STATE(4360), - [sym_file_redirect] = STATE(1365), - [sym_arithmetic_expansion] = STATE(734), - [sym_brace_expression] = STATE(734), - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(734), - [sym_translated_string] = STATE(734), - [sym_number] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [aux_sym_redirected_statement_repeat2] = STATE(2974), - [aux_sym_command_repeat1] = STATE(941), - [aux_sym__literal_repeat1] = STATE(940), - [sym_word] = ACTIONS(544), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_function] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(558), - [anon_sym_typeset] = ACTIONS(558), - [anon_sym_export] = ACTIONS(558), - [anon_sym_readonly] = ACTIONS(558), - [anon_sym_local] = ACTIONS(558), - [anon_sym_unset] = ACTIONS(560), - [anon_sym_unsetenv] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(550), - [anon_sym_AMP_GT_GT] = ACTIONS(548), - [anon_sym_LT_AMP] = ACTIONS(548), - [anon_sym_GT_AMP] = ACTIONS(548), - [anon_sym_GT_PIPE] = ACTIONS(548), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(562), - [sym__special_character] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [sym_raw_string] = ACTIONS(568), - [sym_ansi_c_string] = ACTIONS(568), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(584), - [sym_file_descriptor] = ACTIONS(586), - [sym_variable_name] = ACTIONS(588), - [sym__brace_start] = ACTIONS(590), - }, - [314] = { - [sym_redirected_statement] = STATE(2796), - [sym_for_statement] = STATE(2796), - [sym_c_style_for_statement] = STATE(2796), - [sym_while_statement] = STATE(2796), - [sym_if_statement] = STATE(2796), - [sym_case_statement] = STATE(2796), - [sym_function_definition] = STATE(2796), - [sym_compound_statement] = STATE(2796), - [sym_subshell] = STATE(2796), - [sym_pipeline] = STATE(2796), - [sym_list] = STATE(2796), - [sym_negated_command] = STATE(2796), - [sym_test_command] = STATE(2796), - [sym_declaration_command] = STATE(2796), - [sym_unset_command] = STATE(2796), - [sym_command] = STATE(2796), - [sym_command_name] = STATE(481), - [sym_variable_assignment] = STATE(674), - [sym_variable_assignments] = STATE(2796), - [sym_subscript] = STATE(4373), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(778), - [sym_brace_expression] = STATE(778), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(778), - [sym_translated_string] = STATE(778), - [sym_number] = STATE(778), - [sym_simple_expansion] = STATE(778), - [sym_expansion] = STATE(778), - [sym_command_substitution] = STATE(778), - [sym_process_substitution] = STATE(778), - [aux_sym_redirected_statement_repeat2] = STATE(3049), - [aux_sym_command_repeat1] = STATE(894), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(119), - [sym_variable_name] = ACTIONS(121), - [sym__brace_start] = ACTIONS(388), - }, - [315] = { - [sym_redirected_statement] = STATE(3224), - [sym_for_statement] = STATE(3224), - [sym_c_style_for_statement] = STATE(3224), - [sym_while_statement] = STATE(3224), - [sym_if_statement] = STATE(3224), - [sym_case_statement] = STATE(3224), - [sym_function_definition] = STATE(3224), - [sym_compound_statement] = STATE(3224), - [sym_subshell] = STATE(3224), - [sym_pipeline] = STATE(3224), - [sym_list] = STATE(3224), - [sym_negated_command] = STATE(3224), - [sym_test_command] = STATE(3224), - [sym_declaration_command] = STATE(3224), - [sym_unset_command] = STATE(3224), - [sym_command] = STATE(3224), - [sym_command_name] = STATE(597), - [sym_variable_assignment] = STATE(1090), - [sym_variable_assignments] = STATE(3224), - [sym_subscript] = STATE(4311), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(1407), - [sym_brace_expression] = STATE(1407), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(1407), - [sym_translated_string] = STATE(1407), - [sym_number] = STATE(1407), - [sym_simple_expansion] = STATE(1407), - [sym_expansion] = STATE(1407), - [sym_command_substitution] = STATE(1407), - [sym_process_substitution] = STATE(1407), - [aux_sym_redirected_statement_repeat2] = STATE(3487), - [aux_sym_command_repeat1] = STATE(899), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1075), - [anon_sym_GT] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_typeset] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_local] = ACTIONS(1081), - [anon_sym_unset] = ACTIONS(1083), - [anon_sym_unsetenv] = ACTIONS(1083), - [anon_sym_AMP_GT] = ACTIONS(1075), - [anon_sym_AMP_GT_GT] = ACTIONS(1073), - [anon_sym_LT_AMP] = ACTIONS(1073), - [anon_sym_GT_AMP] = ACTIONS(1073), - [anon_sym_GT_PIPE] = ACTIONS(1073), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(1087), - [sym_ansi_c_string] = ACTIONS(1087), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1091), - [sym_variable_name] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(388), - }, - [316] = { - [sym_redirected_statement] = STATE(2871), - [sym_for_statement] = STATE(2871), - [sym_c_style_for_statement] = STATE(2871), - [sym_while_statement] = STATE(2871), - [sym_if_statement] = STATE(2871), - [sym_case_statement] = STATE(2871), - [sym_function_definition] = STATE(2871), - [sym_compound_statement] = STATE(2871), - [sym_subshell] = STATE(2871), - [sym_pipeline] = STATE(2871), - [sym_list] = STATE(2871), - [sym_negated_command] = STATE(2871), - [sym_test_command] = STATE(2871), - [sym_declaration_command] = STATE(2871), - [sym_unset_command] = STATE(2871), - [sym_command] = STATE(2871), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(703), - [sym_variable_assignments] = STATE(2871), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [317] = { - [sym_redirected_statement] = STATE(2874), - [sym_for_statement] = STATE(2874), - [sym_c_style_for_statement] = STATE(2874), - [sym_while_statement] = STATE(2874), - [sym_if_statement] = STATE(2874), - [sym_case_statement] = STATE(2874), - [sym_function_definition] = STATE(2874), - [sym_compound_statement] = STATE(2874), - [sym_subshell] = STATE(2874), - [sym_pipeline] = STATE(2874), - [sym_list] = STATE(2874), - [sym_negated_command] = STATE(2874), - [sym_test_command] = STATE(2874), - [sym_declaration_command] = STATE(2874), - [sym_unset_command] = STATE(2874), - [sym_command] = STATE(2874), - [sym_command_name] = STATE(495), - [sym_variable_assignment] = STATE(701), - [sym_variable_assignments] = STATE(2874), - [sym_subscript] = STATE(4321), - [sym_file_redirect] = STATE(1618), - [sym_arithmetic_expansion] = STATE(959), - [sym_brace_expression] = STATE(959), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(959), - [sym_translated_string] = STATE(959), - [sym_number] = STATE(959), - [sym_simple_expansion] = STATE(959), - [sym_expansion] = STATE(959), - [sym_command_substitution] = STATE(959), - [sym_process_substitution] = STATE(959), - [aux_sym_redirected_statement_repeat2] = STATE(3083), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(895), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(901), - [anon_sym_typeset] = ACTIONS(901), - [anon_sym_export] = ACTIONS(901), - [anon_sym_readonly] = ACTIONS(901), - [anon_sym_local] = ACTIONS(901), - [anon_sym_unset] = ACTIONS(903), - [anon_sym_unsetenv] = ACTIONS(903), - [anon_sym_AMP_GT] = ACTIONS(344), - [anon_sym_AMP_GT_GT] = ACTIONS(342), - [anon_sym_LT_AMP] = ACTIONS(342), - [anon_sym_GT_AMP] = ACTIONS(342), - [anon_sym_GT_PIPE] = ACTIONS(342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(366), - [sym_ansi_c_string] = ACTIONS(366), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(382), - [sym_file_descriptor] = ACTIONS(384), - [sym_variable_name] = ACTIONS(386), - [sym__brace_start] = ACTIONS(388), - }, - [318] = { - [sym_redirected_statement] = STATE(2710), - [sym_for_statement] = STATE(2710), - [sym_c_style_for_statement] = STATE(2710), - [sym_while_statement] = STATE(2710), - [sym_if_statement] = STATE(2710), - [sym_case_statement] = STATE(2710), - [sym_function_definition] = STATE(2710), - [sym_compound_statement] = STATE(2710), - [sym_subshell] = STATE(2710), - [sym_pipeline] = STATE(2710), - [sym_list] = STATE(2710), - [sym_negated_command] = STATE(2710), - [sym_test_command] = STATE(2710), - [sym_declaration_command] = STATE(2710), - [sym_unset_command] = STATE(2710), - [sym_command] = STATE(2710), - [sym_command_name] = STATE(446), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2710), - [sym_subscript] = STATE(4372), - [sym_file_redirect] = STATE(1291), - [sym_arithmetic_expansion] = STATE(665), - [sym_brace_expression] = STATE(665), - [sym_concatenation] = STATE(1003), - [sym_string] = STATE(665), - [sym_translated_string] = STATE(665), - [sym_number] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym_redirected_statement_repeat2] = STATE(2799), - [aux_sym_command_repeat1] = STATE(1002), - [aux_sym__literal_repeat1] = STATE(831), - [sym_word] = ACTIONS(400), - [anon_sym_for] = ACTIONS(402), - [anon_sym_select] = ACTIONS(404), - [anon_sym_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [anon_sym_until] = ACTIONS(414), - [anon_sym_if] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_function] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(436), - [anon_sym_declare] = ACTIONS(438), - [anon_sym_typeset] = ACTIONS(438), - [anon_sym_export] = ACTIONS(438), - [anon_sym_readonly] = ACTIONS(438), - [anon_sym_local] = ACTIONS(438), - [anon_sym_unset] = ACTIONS(440), - [anon_sym_unsetenv] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(410), - [anon_sym_AMP_GT_GT] = ACTIONS(408), - [anon_sym_LT_AMP] = ACTIONS(408), - [anon_sym_GT_AMP] = ACTIONS(408), - [anon_sym_GT_PIPE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(406), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym__special_character] = ACTIONS(444), - [anon_sym_DQUOTE] = ACTIONS(446), - [sym_raw_string] = ACTIONS(448), - [sym_ansi_c_string] = ACTIONS(448), - [aux_sym_number_token1] = ACTIONS(450), - [aux_sym_number_token2] = ACTIONS(452), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(456), - [anon_sym_BQUOTE] = ACTIONS(458), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(460), - [anon_sym_LT_LPAREN] = ACTIONS(462), - [anon_sym_GT_LPAREN] = ACTIONS(462), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(464), - [sym_file_descriptor] = ACTIONS(466), - [sym_variable_name] = ACTIONS(468), - [sym__brace_start] = ACTIONS(470), - }, - [319] = { - [sym_redirected_statement] = STATE(2814), - [sym_for_statement] = STATE(2814), - [sym_c_style_for_statement] = STATE(2814), - [sym_while_statement] = STATE(2814), - [sym_if_statement] = STATE(2814), - [sym_case_statement] = STATE(2814), - [sym_function_definition] = STATE(2814), - [sym_compound_statement] = STATE(2814), - [sym_subshell] = STATE(2814), - [sym_pipeline] = STATE(2814), - [sym_list] = STATE(2814), - [sym_negated_command] = STATE(2814), - [sym_test_command] = STATE(2814), - [sym_declaration_command] = STATE(2814), - [sym_unset_command] = STATE(2814), - [sym_command] = STATE(2814), - [sym_command_name] = STATE(473), - [sym_variable_assignment] = STATE(656), - [sym_variable_assignments] = STATE(2814), - [sym_subscript] = STATE(4317), - [sym_file_redirect] = STATE(1499), - [sym_arithmetic_expansion] = STATE(794), - [sym_brace_expression] = STATE(794), - [sym_concatenation] = STATE(1275), - [sym_string] = STATE(794), - [sym_translated_string] = STATE(794), - [sym_number] = STATE(794), - [sym_simple_expansion] = STATE(794), - [sym_expansion] = STATE(794), - [sym_command_substitution] = STATE(794), - [sym_process_substitution] = STATE(794), - [aux_sym_redirected_statement_repeat2] = STATE(2998), - [aux_sym_command_repeat1] = STATE(908), - [aux_sym__literal_repeat1] = STATE(1104), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_GT_GT] = ACTIONS(15), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_GT] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(17), - [anon_sym_AMP_GT_GT] = ACTIONS(15), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(15), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym__special_character] = ACTIONS(43), - [anon_sym_DQUOTE] = ACTIONS(45), - [sym_raw_string] = ACTIONS(47), - [sym_ansi_c_string] = ACTIONS(47), - [aux_sym_number_token1] = ACTIONS(49), - [aux_sym_number_token2] = ACTIONS(51), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(55), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(59), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(65), - [sym_file_descriptor] = ACTIONS(67), - [sym_variable_name] = ACTIONS(69), - [sym__brace_start] = ACTIONS(71), - }, - [320] = { - [sym_redirected_statement] = STATE(3225), - [sym_for_statement] = STATE(3225), - [sym_c_style_for_statement] = STATE(3225), - [sym_while_statement] = STATE(3225), - [sym_if_statement] = STATE(3225), - [sym_case_statement] = STATE(3225), - [sym_function_definition] = STATE(3225), - [sym_compound_statement] = STATE(3225), - [sym_subshell] = STATE(3225), - [sym_pipeline] = STATE(3225), - [sym_list] = STATE(3225), - [sym_negated_command] = STATE(3225), - [sym_test_command] = STATE(3225), - [sym_declaration_command] = STATE(3225), - [sym_unset_command] = STATE(3225), - [sym_command] = STATE(3225), - [sym_command_name] = STATE(597), - [sym_variable_assignment] = STATE(1184), - [sym_variable_assignments] = STATE(3225), - [sym_subscript] = STATE(4311), - [sym_file_redirect] = STATE(1570), - [sym_arithmetic_expansion] = STATE(1407), - [sym_brace_expression] = STATE(1407), - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(1407), - [sym_translated_string] = STATE(1407), - [sym_number] = STATE(1407), - [sym_simple_expansion] = STATE(1407), - [sym_expansion] = STATE(1407), - [sym_command_substitution] = STATE(1407), - [sym_process_substitution] = STATE(1407), - [aux_sym_redirected_statement_repeat2] = STATE(3487), - [aux_sym_command_repeat1] = STATE(899), - [aux_sym__literal_repeat1] = STATE(1096), - [sym_word] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1075), - [anon_sym_GT] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_typeset] = ACTIONS(1081), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_local] = ACTIONS(1081), - [anon_sym_unset] = ACTIONS(1083), - [anon_sym_unsetenv] = ACTIONS(1083), - [anon_sym_AMP_GT] = ACTIONS(1075), - [anon_sym_AMP_GT_GT] = ACTIONS(1073), - [anon_sym_LT_AMP] = ACTIONS(1073), - [anon_sym_GT_AMP] = ACTIONS(1073), - [anon_sym_GT_PIPE] = ACTIONS(1073), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(360), - [sym__special_character] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(364), - [sym_raw_string] = ACTIONS(1087), - [sym_ansi_c_string] = ACTIONS(1087), - [aux_sym_number_token1] = ACTIONS(368), - [aux_sym_number_token2] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(378), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1089), - [sym_file_descriptor] = ACTIONS(1091), - [sym_variable_name] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(388), - }, - [321] = { - [sym_redirected_statement] = STATE(2825), - [sym_for_statement] = STATE(2825), - [sym_c_style_for_statement] = STATE(2825), - [sym_while_statement] = STATE(2825), - [sym_if_statement] = STATE(2825), - [sym_case_statement] = STATE(2825), - [sym_function_definition] = STATE(2825), - [sym_compound_statement] = STATE(2825), - [sym_subshell] = STATE(2825), - [sym_pipeline] = STATE(2825), - [sym_list] = STATE(2825), - [sym_negated_command] = STATE(2825), - [sym_test_command] = STATE(2825), - [sym_declaration_command] = STATE(2825), - [sym_unset_command] = STATE(2825), - [sym_command] = STATE(2825), - [sym_command_name] = STATE(473), - [sym_variable_assignment] = STATE(648), - [sym_variable_assignments] = STATE(2825), - [sym_subscript] = STATE(4317), - [sym_file_redirect] = STATE(1499), - [sym_arithmetic_expansion] = STATE(794), - [sym_brace_expression] = STATE(794), - [sym_concatenation] = STATE(1275), - [sym_string] = STATE(794), - [sym_translated_string] = STATE(794), - [sym_number] = STATE(794), - [sym_simple_expansion] = STATE(794), - [sym_expansion] = STATE(794), - [sym_command_substitution] = STATE(794), - [sym_process_substitution] = STATE(794), - [aux_sym_redirected_statement_repeat2] = STATE(2998), - [aux_sym_command_repeat1] = STATE(908), - [aux_sym__literal_repeat1] = STATE(1104), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_GT_GT] = ACTIONS(15), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_GT] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(17), - [anon_sym_AMP_GT_GT] = ACTIONS(15), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(15), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym__special_character] = ACTIONS(43), - [anon_sym_DQUOTE] = ACTIONS(45), - [sym_raw_string] = ACTIONS(47), - [sym_ansi_c_string] = ACTIONS(47), - [aux_sym_number_token1] = ACTIONS(49), - [aux_sym_number_token2] = ACTIONS(51), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(55), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(59), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(65), - [sym_file_descriptor] = ACTIONS(67), - [sym_variable_name] = ACTIONS(69), - [sym__brace_start] = ACTIONS(71), - }, - [322] = { - [sym__expression] = STATE(1990), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(1557), - [sym_brace_expression] = STATE(1557), - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(1557), - [sym_translated_string] = STATE(1557), - [sym_number] = STATE(1557), - [sym_simple_expansion] = STATE(1557), - [sym_expansion] = STATE(1557), - [sym_command_substitution] = STATE(1557), - [sym_process_substitution] = STATE(1557), - [aux_sym__literal_repeat1] = STATE(1636), - [aux_sym_concatenation_repeat1] = STATE(1546), - [sym_word] = ACTIONS(220), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1095), - [anon_sym_RPAREN_RPAREN] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(222), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(93), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1095), - [aux_sym_concatenation_token1] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(156), - [sym__special_character] = ACTIONS(1099), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1103), - [sym_ansi_c_string] = ACTIONS(1103), - [aux_sym_number_token1] = ACTIONS(162), - [aux_sym_number_token2] = ACTIONS(164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(168), - [anon_sym_BQUOTE] = ACTIONS(170), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1111), - [sym__concat] = ACTIONS(1097), - [sym__brace_start] = ACTIONS(182), - }, - [323] = { - [sym__expression] = STATE(2003), - [sym_binary_expression] = STATE(1978), - [sym_ternary_expression] = STATE(1978), - [sym_unary_expression] = STATE(1978), - [sym_postfix_expression] = STATE(1978), - [sym_parenthesized_expression] = STATE(1978), - [sym_arithmetic_expansion] = STATE(1584), - [sym_brace_expression] = STATE(1584), - [sym_concatenation] = STATE(1978), - [sym_string] = STATE(1584), - [sym_translated_string] = STATE(1584), - [sym_number] = STATE(1584), - [sym_simple_expansion] = STATE(1584), - [sym_expansion] = STATE(1584), - [sym_command_substitution] = STATE(1584), - [sym_process_substitution] = STATE(1584), - [aux_sym__literal_repeat1] = STATE(1641), - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym_word] = ACTIONS(1113), - [anon_sym_LPAREN_LPAREN] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), - [aux_sym_concatenation_token1] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(611), - [sym__special_character] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(615), - [sym_raw_string] = ACTIONS(1127), - [sym_ansi_c_string] = ACTIONS(1127), - [aux_sym_number_token1] = ACTIONS(619), - [aux_sym_number_token2] = ACTIONS(621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1129), - [sym__concat] = ACTIONS(1131), - [sym__brace_start] = ACTIONS(635), - }, - [324] = { - [sym__expression] = STATE(2003), - [sym_binary_expression] = STATE(1978), - [sym_ternary_expression] = STATE(1978), - [sym_unary_expression] = STATE(1978), - [sym_postfix_expression] = STATE(1978), - [sym_parenthesized_expression] = STATE(1978), - [sym_arithmetic_expansion] = STATE(1584), - [sym_brace_expression] = STATE(1584), - [sym_concatenation] = STATE(1978), - [sym_string] = STATE(1584), - [sym_translated_string] = STATE(1584), - [sym_number] = STATE(1584), - [sym_simple_expansion] = STATE(1584), - [sym_expansion] = STATE(1584), - [sym_command_substitution] = STATE(1584), - [sym_process_substitution] = STATE(1584), - [aux_sym__literal_repeat1] = STATE(1641), - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym_word] = ACTIONS(1113), - [anon_sym_LPAREN_LPAREN] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_RBRACK] = ACTIONS(1133), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), - [aux_sym_concatenation_token1] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(611), - [sym__special_character] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(615), - [sym_raw_string] = ACTIONS(1127), - [sym_ansi_c_string] = ACTIONS(1127), - [aux_sym_number_token1] = ACTIONS(619), - [aux_sym_number_token2] = ACTIONS(621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1129), - [sym__concat] = ACTIONS(1135), - [sym__brace_start] = ACTIONS(635), - }, - [325] = { - [sym__expression] = STATE(2003), - [sym_binary_expression] = STATE(1978), - [sym_ternary_expression] = STATE(1978), - [sym_unary_expression] = STATE(1978), - [sym_postfix_expression] = STATE(1978), - [sym_parenthesized_expression] = STATE(1978), - [sym_arithmetic_expansion] = STATE(1584), - [sym_brace_expression] = STATE(1584), - [sym_concatenation] = STATE(1978), - [sym_string] = STATE(1584), - [sym_translated_string] = STATE(1584), - [sym_number] = STATE(1584), - [sym_simple_expansion] = STATE(1584), - [sym_expansion] = STATE(1584), - [sym_command_substitution] = STATE(1584), - [sym_process_substitution] = STATE(1584), - [aux_sym__literal_repeat1] = STATE(1641), - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym_word] = ACTIONS(1113), - [anon_sym_LPAREN_LPAREN] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_RBRACK] = ACTIONS(1137), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), - [aux_sym_concatenation_token1] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(611), - [sym__special_character] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(615), - [sym_raw_string] = ACTIONS(1127), - [sym_ansi_c_string] = ACTIONS(1127), - [aux_sym_number_token1] = ACTIONS(619), - [aux_sym_number_token2] = ACTIONS(621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1129), - [sym__concat] = ACTIONS(1139), - [sym__brace_start] = ACTIONS(635), - }, - [326] = { - [sym__expression] = STATE(2060), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(1637), - [sym_brace_expression] = STATE(1637), - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(1637), - [sym_translated_string] = STATE(1637), - [sym_number] = STATE(1637), - [sym_simple_expansion] = STATE(1637), - [sym_expansion] = STATE(1637), - [sym_command_substitution] = STATE(1637), - [sym_process_substitution] = STATE(1637), - [aux_sym__literal_repeat1] = STATE(1636), - [aux_sym_concatenation_repeat1] = STATE(1606), - [sym_word] = ACTIONS(139), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1095), - [anon_sym_RPAREN_RPAREN] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(152), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(131), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1095), - [aux_sym_concatenation_token1] = ACTIONS(1097), - [anon_sym_DOLLAR] = ACTIONS(156), - [sym__special_character] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1101), - [sym_raw_string] = ACTIONS(1143), - [sym_ansi_c_string] = ACTIONS(1143), - [aux_sym_number_token1] = ACTIONS(162), - [aux_sym_number_token2] = ACTIONS(164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1105), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(168), - [anon_sym_BQUOTE] = ACTIONS(170), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1107), - [anon_sym_LT_LPAREN] = ACTIONS(1109), - [anon_sym_GT_LPAREN] = ACTIONS(1109), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1145), - [sym__concat] = ACTIONS(1097), - [sym__brace_start] = ACTIONS(182), - }, - [327] = { - [sym__expression] = STATE(2054), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(1583), - [sym_brace_expression] = STATE(1583), - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(1583), - [sym_translated_string] = STATE(1583), - [sym_number] = STATE(1583), - [sym_simple_expansion] = STATE(1583), - [sym_expansion] = STATE(1583), - [sym_command_substitution] = STATE(1583), - [sym_process_substitution] = STATE(1583), - [aux_sym__literal_repeat1] = STATE(1586), - [aux_sym_concatenation_repeat1] = STATE(1706), - [sym_word] = ACTIONS(1147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1149), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1153), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1149), - [aux_sym_concatenation_token1] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(240), - [sym__special_character] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1161), - [sym_ansi_c_string] = ACTIONS(1161), - [aux_sym_number_token1] = ACTIONS(246), - [aux_sym_number_token2] = ACTIONS(248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1165), - [anon_sym_LT_LPAREN] = ACTIONS(1167), - [anon_sym_GT_LPAREN] = ACTIONS(1167), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1169), - [sym__concat] = ACTIONS(1155), - [sym__brace_start] = ACTIONS(264), - }, - [328] = { - [sym__expression] = STATE(2096), - [sym_binary_expression] = STATE(2073), - [sym_ternary_expression] = STATE(2073), - [sym_unary_expression] = STATE(2073), - [sym_postfix_expression] = STATE(2073), - [sym_parenthesized_expression] = STATE(2073), - [sym_arithmetic_expansion] = STATE(1635), - [sym_brace_expression] = STATE(1635), - [sym_concatenation] = STATE(2073), - [sym_string] = STATE(1635), - [sym_translated_string] = STATE(1635), - [sym_number] = STATE(1635), - [sym_simple_expansion] = STATE(1635), - [sym_expansion] = STATE(1635), - [sym_command_substitution] = STATE(1635), - [sym_process_substitution] = STATE(1635), - [aux_sym__literal_repeat1] = STATE(1923), - [aux_sym_concatenation_repeat1] = STATE(1648), - [sym_word] = ACTIONS(596), - [anon_sym_LPAREN_LPAREN] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(605), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), - [aux_sym_concatenation_token1] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(611), - [sym__special_character] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(615), - [sym_raw_string] = ACTIONS(617), - [sym_ansi_c_string] = ACTIONS(617), - [aux_sym_number_token1] = ACTIONS(619), - [aux_sym_number_token2] = ACTIONS(621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(633), - [sym__concat] = ACTIONS(1123), - [sym__brace_start] = ACTIONS(635), - }, - [329] = { - [sym__expression] = STATE(2003), - [sym_binary_expression] = STATE(1978), - [sym_ternary_expression] = STATE(1978), - [sym_unary_expression] = STATE(1978), - [sym_postfix_expression] = STATE(1978), - [sym_parenthesized_expression] = STATE(1978), - [sym_arithmetic_expansion] = STATE(1584), - [sym_brace_expression] = STATE(1584), - [sym_concatenation] = STATE(1978), - [sym_string] = STATE(1584), - [sym_translated_string] = STATE(1584), - [sym_number] = STATE(1584), - [sym_simple_expansion] = STATE(1584), - [sym_expansion] = STATE(1584), - [sym_command_substitution] = STATE(1584), - [sym_process_substitution] = STATE(1584), - [aux_sym__literal_repeat1] = STATE(1641), - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym_word] = ACTIONS(1113), - [anon_sym_LPAREN_LPAREN] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), - [aux_sym_concatenation_token1] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(611), - [sym__special_character] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(615), - [sym_raw_string] = ACTIONS(1127), - [sym_ansi_c_string] = ACTIONS(1127), - [aux_sym_number_token1] = ACTIONS(619), - [aux_sym_number_token2] = ACTIONS(621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1129), - [sym__concat] = ACTIONS(600), - [sym__brace_start] = ACTIONS(635), - }, - [330] = { - [sym__expression] = STATE(2130), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(1599), - [sym_brace_expression] = STATE(1599), - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(1599), - [sym_translated_string] = STATE(1599), - [sym_number] = STATE(1599), - [sym_simple_expansion] = STATE(1599), - [sym_expansion] = STATE(1599), - [sym_command_substitution] = STATE(1599), - [sym_process_substitution] = STATE(1599), - [aux_sym__literal_repeat1] = STATE(1831), - [aux_sym_concatenation_repeat1] = STATE(1619), - [sym_word] = ACTIONS(1171), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1149), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1173), - [anon_sym_RBRACK_RBRACK] = ACTIONS(600), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1175), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1149), - [aux_sym_concatenation_token1] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(240), - [sym__special_character] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1179), - [sym_ansi_c_string] = ACTIONS(1179), - [aux_sym_number_token1] = ACTIONS(246), - [aux_sym_number_token2] = ACTIONS(248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1165), - [anon_sym_LT_LPAREN] = ACTIONS(1167), - [anon_sym_GT_LPAREN] = ACTIONS(1167), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1181), - [sym__concat] = ACTIONS(1155), - [sym__brace_start] = ACTIONS(264), - }, - [331] = { - [sym__expression] = STATE(2003), - [sym_binary_expression] = STATE(1978), - [sym_ternary_expression] = STATE(1978), - [sym_unary_expression] = STATE(1978), - [sym_postfix_expression] = STATE(1978), - [sym_parenthesized_expression] = STATE(1978), - [sym_arithmetic_expansion] = STATE(1584), - [sym_brace_expression] = STATE(1584), - [sym_concatenation] = STATE(1978), - [sym_string] = STATE(1584), - [sym_translated_string] = STATE(1584), - [sym_number] = STATE(1584), - [sym_simple_expansion] = STATE(1584), - [sym_expansion] = STATE(1584), - [sym_command_substitution] = STATE(1584), - [sym_process_substitution] = STATE(1584), - [aux_sym__literal_repeat1] = STATE(1641), - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym_word] = ACTIONS(1113), - [anon_sym_LPAREN_LPAREN] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1121), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(598), - [aux_sym_concatenation_token1] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(611), - [sym__special_character] = ACTIONS(1125), - [anon_sym_DQUOTE] = ACTIONS(615), - [sym_raw_string] = ACTIONS(1127), - [sym_ansi_c_string] = ACTIONS(1127), - [aux_sym_number_token1] = ACTIONS(619), - [aux_sym_number_token2] = ACTIONS(621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(625), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(629), - [anon_sym_LT_LPAREN] = ACTIONS(631), - [anon_sym_GT_LPAREN] = ACTIONS(631), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1129), - [sym__concat] = ACTIONS(1185), - [sym__brace_start] = ACTIONS(635), - }, - [332] = { - [sym__expression] = STATE(2122), - [sym_binary_expression] = STATE(2117), - [sym_ternary_expression] = STATE(2117), - [sym_unary_expression] = STATE(2117), - [sym_postfix_expression] = STATE(2117), - [sym_parenthesized_expression] = STATE(2117), - [sym_arithmetic_expansion] = STATE(1593), - [sym_brace_expression] = STATE(1593), - [sym_concatenation] = STATE(2117), - [sym_string] = STATE(1593), - [sym_translated_string] = STATE(1593), - [sym_number] = STATE(1593), - [sym_simple_expansion] = STATE(1593), - [sym_expansion] = STATE(1593), - [sym_command_substitution] = STATE(1593), - [sym_process_substitution] = STATE(1593), - [aux_sym__literal_repeat1] = STATE(1586), - [aux_sym_concatenation_repeat1] = STATE(1626), - [sym_word] = ACTIONS(230), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1149), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(234), - [anon_sym_RPAREN] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(236), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(192), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1149), - [aux_sym_concatenation_token1] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(240), - [sym__special_character] = ACTIONS(1187), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1189), - [sym_ansi_c_string] = ACTIONS(1189), - [aux_sym_number_token1] = ACTIONS(246), - [aux_sym_number_token2] = ACTIONS(248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1165), - [anon_sym_LT_LPAREN] = ACTIONS(1167), - [anon_sym_GT_LPAREN] = ACTIONS(1167), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1191), - [sym__concat] = ACTIONS(1155), - [sym__brace_start] = ACTIONS(264), - }, - [333] = { - [sym__expression] = STATE(2163), - [sym_binary_expression] = STATE(1623), - [sym_ternary_expression] = STATE(1623), - [sym_unary_expression] = STATE(1623), - [sym_postfix_expression] = STATE(1623), - [sym_parenthesized_expression] = STATE(1623), - [sym_arithmetic_expansion] = STATE(1711), - [sym_brace_expression] = STATE(1711), - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(1711), - [sym_translated_string] = STATE(1711), - [sym_number] = STATE(1711), - [sym_simple_expansion] = STATE(1711), - [sym_expansion] = STATE(1711), - [sym_command_substitution] = STATE(1711), - [sym_process_substitution] = STATE(1711), - [aux_sym__literal_repeat1] = STATE(1586), - [aux_sym_concatenation_repeat1] = STATE(1926), - [sym_word] = ACTIONS(1193), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1149), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_GT_GT] = ACTIONS(143), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [aux_sym_unary_expression_token1] = ACTIONS(1197), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1149), - [aux_sym_concatenation_token1] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(240), - [sym__special_character] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1201), - [sym_ansi_c_string] = ACTIONS(1201), - [aux_sym_number_token1] = ACTIONS(246), - [aux_sym_number_token2] = ACTIONS(248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1165), - [anon_sym_LT_LPAREN] = ACTIONS(1167), - [anon_sym_GT_LPAREN] = ACTIONS(1167), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1203), - [sym__concat] = ACTIONS(1155), - [sym__brace_start] = ACTIONS(264), - }, - [334] = { - [sym_string] = STATE(354), - [sym_word] = ACTIONS(1205), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1205), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1205), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym_EQ] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_PLUS_EQ] = ACTIONS(1205), - [anon_sym_DASH_EQ] = ACTIONS(1205), - [anon_sym_STAR_EQ] = ACTIONS(1205), - [anon_sym_SLASH_EQ] = ACTIONS(1205), - [anon_sym_PERCENT_EQ] = ACTIONS(1205), - [anon_sym_LT_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_GT_EQ] = ACTIONS(1205), - [anon_sym_AMP_EQ] = ACTIONS(1205), - [anon_sym_CARET_EQ] = ACTIONS(1205), - [anon_sym_PIPE_EQ] = ACTIONS(1205), - [anon_sym_EQ_EQ] = ACTIONS(1205), - [anon_sym_BANG_EQ] = ACTIONS(1205), - [anon_sym_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_EQ] = ACTIONS(1205), - [anon_sym_AMP_AMP] = ACTIONS(1205), - [anon_sym_PIPE_PIPE] = ACTIONS(1205), - [anon_sym_LT_LT] = ACTIONS(1205), - [anon_sym_GT_GT] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_SLASH] = ACTIONS(1205), - [anon_sym_PERCENT] = ACTIONS(1205), - [anon_sym_STAR_STAR] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1205), - [anon_sym_RPAREN] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_SEMI_SEMI] = ACTIONS(1205), - [anon_sym_PIPE_AMP] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_EQ_TILDE] = ACTIONS(1205), - [anon_sym_AMP_GT] = ACTIONS(1205), - [anon_sym_AMP_GT_GT] = ACTIONS(1205), - [anon_sym_LT_AMP] = ACTIONS(1205), - [anon_sym_GT_AMP] = ACTIONS(1205), - [anon_sym_GT_PIPE] = ACTIONS(1205), - [anon_sym_LT_LT_DASH] = ACTIONS(1205), - [anon_sym_LF] = ACTIONS(1205), - [anon_sym_LT_LT_LT] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1205), - [anon_sym_DOLLAR] = ACTIONS(1207), - [sym__special_character] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_raw_string] = ACTIONS(1205), - [sym_ansi_c_string] = ACTIONS(1205), - [aux_sym_number_token1] = ACTIONS(1205), - [aux_sym_number_token2] = ACTIONS(1205), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1205), - [anon_sym_AT] = ACTIONS(1207), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1205), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1205), - [anon_sym_LT_LPAREN] = ACTIONS(1205), - [anon_sym_GT_LPAREN] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1211), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1211), - [anon_sym_0] = ACTIONS(1207), - [anon_sym__] = ACTIONS(1207), - [sym_test_operator] = ACTIONS(1205), - [sym_file_descriptor] = ACTIONS(1213), - [sym__bare_dollar] = ACTIONS(1213), - [sym__brace_start] = ACTIONS(1213), - }, - [335] = { - [sym_string] = STATE(354), - [sym_word] = ACTIONS(1215), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1215), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym_EQ] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_EQ] = ACTIONS(1215), - [anon_sym_DASH_EQ] = ACTIONS(1215), - [anon_sym_STAR_EQ] = ACTIONS(1215), - [anon_sym_SLASH_EQ] = ACTIONS(1215), - [anon_sym_PERCENT_EQ] = ACTIONS(1215), - [anon_sym_LT_LT_EQ] = ACTIONS(1215), - [anon_sym_GT_GT_EQ] = ACTIONS(1215), - [anon_sym_AMP_EQ] = ACTIONS(1215), - [anon_sym_CARET_EQ] = ACTIONS(1215), - [anon_sym_PIPE_EQ] = ACTIONS(1215), - [anon_sym_EQ_EQ] = ACTIONS(1215), - [anon_sym_BANG_EQ] = ACTIONS(1215), - [anon_sym_LT_EQ] = ACTIONS(1215), - [anon_sym_GT_EQ] = ACTIONS(1215), - [anon_sym_AMP_AMP] = ACTIONS(1215), - [anon_sym_PIPE_PIPE] = ACTIONS(1215), - [anon_sym_LT_LT] = ACTIONS(1215), - [anon_sym_GT_GT] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_SLASH] = ACTIONS(1215), - [anon_sym_PERCENT] = ACTIONS(1215), - [anon_sym_STAR_STAR] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(1215), - [anon_sym_GT] = ACTIONS(1215), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_SEMI_SEMI] = ACTIONS(1215), - [anon_sym_PIPE_AMP] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_EQ_TILDE] = ACTIONS(1215), - [anon_sym_AMP_GT] = ACTIONS(1215), - [anon_sym_AMP_GT_GT] = ACTIONS(1215), - [anon_sym_LT_AMP] = ACTIONS(1215), - [anon_sym_GT_AMP] = ACTIONS(1215), - [anon_sym_GT_PIPE] = ACTIONS(1215), - [anon_sym_LT_LT_DASH] = ACTIONS(1215), - [anon_sym_LF] = ACTIONS(1215), - [anon_sym_LT_LT_LT] = ACTIONS(1215), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_CARET] = ACTIONS(1215), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1215), - [anon_sym_DOLLAR] = ACTIONS(1207), - [sym__special_character] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_raw_string] = ACTIONS(1215), - [sym_ansi_c_string] = ACTIONS(1215), - [aux_sym_number_token1] = ACTIONS(1215), - [aux_sym_number_token2] = ACTIONS(1215), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1207), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), - [anon_sym_BQUOTE] = ACTIONS(1215), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1215), - [anon_sym_LT_LPAREN] = ACTIONS(1215), - [anon_sym_GT_LPAREN] = ACTIONS(1215), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1211), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1211), - [anon_sym_0] = ACTIONS(1207), - [anon_sym__] = ACTIONS(1207), - [sym_test_operator] = ACTIONS(1215), - [sym_file_descriptor] = ACTIONS(1217), - [sym__bare_dollar] = ACTIONS(1217), - [sym__brace_start] = ACTIONS(1217), - }, - [336] = { - [sym_string] = STATE(381), - [sym_word] = ACTIONS(1205), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1205), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym_EQ] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_PLUS_EQ] = ACTIONS(1205), - [anon_sym_DASH_EQ] = ACTIONS(1205), - [anon_sym_STAR_EQ] = ACTIONS(1205), - [anon_sym_SLASH_EQ] = ACTIONS(1205), - [anon_sym_PERCENT_EQ] = ACTIONS(1205), - [anon_sym_LT_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_GT_EQ] = ACTIONS(1205), - [anon_sym_AMP_EQ] = ACTIONS(1205), - [anon_sym_CARET_EQ] = ACTIONS(1205), - [anon_sym_PIPE_EQ] = ACTIONS(1205), - [anon_sym_EQ_EQ] = ACTIONS(1205), - [anon_sym_BANG_EQ] = ACTIONS(1205), - [anon_sym_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_EQ] = ACTIONS(1205), - [anon_sym_AMP_AMP] = ACTIONS(1205), - [anon_sym_PIPE_PIPE] = ACTIONS(1205), - [anon_sym_LT_LT] = ACTIONS(1205), - [anon_sym_GT_GT] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_SLASH] = ACTIONS(1205), - [anon_sym_PERCENT] = ACTIONS(1205), - [anon_sym_STAR_STAR] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1205), - [anon_sym_RPAREN] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_SEMI_SEMI] = ACTIONS(1205), - [anon_sym_PIPE_AMP] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_EQ_TILDE] = ACTIONS(1205), - [anon_sym_AMP_GT] = ACTIONS(1205), - [anon_sym_AMP_GT_GT] = ACTIONS(1205), - [anon_sym_LT_AMP] = ACTIONS(1205), - [anon_sym_GT_AMP] = ACTIONS(1205), - [anon_sym_GT_PIPE] = ACTIONS(1205), - [anon_sym_LT_LT_DASH] = ACTIONS(1205), - [anon_sym_LF] = ACTIONS(1205), - [anon_sym_LT_LT_LT] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_QMARK] = ACTIONS(1219), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1205), - [anon_sym_DOLLAR] = ACTIONS(1219), - [sym__special_character] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_raw_string] = ACTIONS(1205), - [sym_ansi_c_string] = ACTIONS(1205), - [aux_sym_number_token1] = ACTIONS(1205), - [aux_sym_number_token2] = ACTIONS(1205), - [anon_sym_POUND] = ACTIONS(1219), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1205), - [anon_sym_AT] = ACTIONS(1219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1205), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1205), - [anon_sym_LT_LPAREN] = ACTIONS(1205), - [anon_sym_GT_LPAREN] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1223), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(1219), - [anon_sym__] = ACTIONS(1219), - [sym_test_operator] = ACTIONS(1205), - [sym_file_descriptor] = ACTIONS(1213), - [sym__bare_dollar] = ACTIONS(1213), - [sym__brace_start] = ACTIONS(1213), - }, - [337] = { - [sym_string] = STATE(381), - [sym_word] = ACTIONS(1215), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym_EQ] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_EQ] = ACTIONS(1215), - [anon_sym_DASH_EQ] = ACTIONS(1215), - [anon_sym_STAR_EQ] = ACTIONS(1215), - [anon_sym_SLASH_EQ] = ACTIONS(1215), - [anon_sym_PERCENT_EQ] = ACTIONS(1215), - [anon_sym_LT_LT_EQ] = ACTIONS(1215), - [anon_sym_GT_GT_EQ] = ACTIONS(1215), - [anon_sym_AMP_EQ] = ACTIONS(1215), - [anon_sym_CARET_EQ] = ACTIONS(1215), - [anon_sym_PIPE_EQ] = ACTIONS(1215), - [anon_sym_EQ_EQ] = ACTIONS(1215), - [anon_sym_BANG_EQ] = ACTIONS(1215), - [anon_sym_LT_EQ] = ACTIONS(1215), - [anon_sym_GT_EQ] = ACTIONS(1215), - [anon_sym_AMP_AMP] = ACTIONS(1215), - [anon_sym_PIPE_PIPE] = ACTIONS(1215), - [anon_sym_LT_LT] = ACTIONS(1215), - [anon_sym_GT_GT] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_SLASH] = ACTIONS(1215), - [anon_sym_PERCENT] = ACTIONS(1215), - [anon_sym_STAR_STAR] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(1215), - [anon_sym_GT] = ACTIONS(1215), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_SEMI_SEMI] = ACTIONS(1215), - [anon_sym_PIPE_AMP] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_EQ_TILDE] = ACTIONS(1215), - [anon_sym_AMP_GT] = ACTIONS(1215), - [anon_sym_AMP_GT_GT] = ACTIONS(1215), - [anon_sym_LT_AMP] = ACTIONS(1215), - [anon_sym_GT_AMP] = ACTIONS(1215), - [anon_sym_GT_PIPE] = ACTIONS(1215), - [anon_sym_LT_LT_DASH] = ACTIONS(1215), - [anon_sym_LF] = ACTIONS(1215), - [anon_sym_LT_LT_LT] = ACTIONS(1215), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_CARET] = ACTIONS(1215), - [anon_sym_QMARK] = ACTIONS(1219), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1215), - [anon_sym_DOLLAR] = ACTIONS(1219), - [sym__special_character] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_raw_string] = ACTIONS(1215), - [sym_ansi_c_string] = ACTIONS(1215), - [aux_sym_number_token1] = ACTIONS(1215), - [aux_sym_number_token2] = ACTIONS(1215), - [anon_sym_POUND] = ACTIONS(1219), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), - [anon_sym_BQUOTE] = ACTIONS(1215), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1215), - [anon_sym_LT_LPAREN] = ACTIONS(1215), - [anon_sym_GT_LPAREN] = ACTIONS(1215), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1223), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1223), - [anon_sym_0] = ACTIONS(1219), - [anon_sym__] = ACTIONS(1219), - [sym_test_operator] = ACTIONS(1215), - [sym_file_descriptor] = ACTIONS(1217), - [sym__bare_dollar] = ACTIONS(1217), - [sym__brace_start] = ACTIONS(1217), - }, - [338] = { - [aux_sym_concatenation_repeat1] = STATE(345), - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_RPAREN] = ACTIONS(1225), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1225), - [anon_sym_GT_AMP] = ACTIONS(1225), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(180), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [339] = { - [sym_string] = STATE(429), - [sym_word] = ACTIONS(1205), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1205), - [anon_sym_EQ] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_PLUS_EQ] = ACTIONS(1205), - [anon_sym_DASH_EQ] = ACTIONS(1205), - [anon_sym_STAR_EQ] = ACTIONS(1205), - [anon_sym_SLASH_EQ] = ACTIONS(1205), - [anon_sym_PERCENT_EQ] = ACTIONS(1205), - [anon_sym_LT_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_GT_EQ] = ACTIONS(1205), - [anon_sym_AMP_EQ] = ACTIONS(1205), - [anon_sym_CARET_EQ] = ACTIONS(1205), - [anon_sym_PIPE_EQ] = ACTIONS(1205), - [anon_sym_EQ_EQ] = ACTIONS(1205), - [anon_sym_BANG_EQ] = ACTIONS(1205), - [anon_sym_LT_EQ] = ACTIONS(1205), - [anon_sym_GT_EQ] = ACTIONS(1205), - [anon_sym_AMP_AMP] = ACTIONS(1205), - [anon_sym_PIPE_PIPE] = ACTIONS(1205), - [anon_sym_LT_LT] = ACTIONS(1205), - [anon_sym_GT_GT] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_SLASH] = ACTIONS(1205), - [anon_sym_PERCENT] = ACTIONS(1205), - [anon_sym_STAR_STAR] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_PIPE_AMP] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_RBRACK] = ACTIONS(1205), - [anon_sym_EQ_TILDE] = ACTIONS(1205), - [anon_sym_AMP_GT] = ACTIONS(1205), - [anon_sym_AMP_GT_GT] = ACTIONS(1205), - [anon_sym_LT_AMP] = ACTIONS(1205), - [anon_sym_GT_AMP] = ACTIONS(1205), - [anon_sym_GT_PIPE] = ACTIONS(1205), - [anon_sym_LT_LT_DASH] = ACTIONS(1205), - [anon_sym_LT_LT_LT] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1205), - [anon_sym_DOLLAR] = ACTIONS(1236), - [sym__special_character] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_raw_string] = ACTIONS(1205), - [sym_ansi_c_string] = ACTIONS(1205), - [aux_sym_number_token1] = ACTIONS(1205), - [aux_sym_number_token2] = ACTIONS(1205), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1205), - [anon_sym_AT] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1205), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1205), - [anon_sym_LT_LPAREN] = ACTIONS(1205), - [anon_sym_GT_LPAREN] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1240), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1240), - [anon_sym_0] = ACTIONS(1236), - [anon_sym__] = ACTIONS(1236), - [sym_test_operator] = ACTIONS(1205), - [sym_file_descriptor] = ACTIONS(1213), - [sym__bare_dollar] = ACTIONS(1213), - [sym__brace_start] = ACTIONS(1213), - }, - [340] = { - [sym_string] = STATE(429), - [sym_word] = ACTIONS(1215), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1215), - [anon_sym_EQ] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_EQ] = ACTIONS(1215), - [anon_sym_DASH_EQ] = ACTIONS(1215), - [anon_sym_STAR_EQ] = ACTIONS(1215), - [anon_sym_SLASH_EQ] = ACTIONS(1215), - [anon_sym_PERCENT_EQ] = ACTIONS(1215), - [anon_sym_LT_LT_EQ] = ACTIONS(1215), - [anon_sym_GT_GT_EQ] = ACTIONS(1215), - [anon_sym_AMP_EQ] = ACTIONS(1215), - [anon_sym_CARET_EQ] = ACTIONS(1215), - [anon_sym_PIPE_EQ] = ACTIONS(1215), - [anon_sym_EQ_EQ] = ACTIONS(1215), - [anon_sym_BANG_EQ] = ACTIONS(1215), - [anon_sym_LT_EQ] = ACTIONS(1215), - [anon_sym_GT_EQ] = ACTIONS(1215), - [anon_sym_AMP_AMP] = ACTIONS(1215), - [anon_sym_PIPE_PIPE] = ACTIONS(1215), - [anon_sym_LT_LT] = ACTIONS(1215), - [anon_sym_GT_GT] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_SLASH] = ACTIONS(1215), - [anon_sym_PERCENT] = ACTIONS(1215), - [anon_sym_STAR_STAR] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(1215), - [anon_sym_GT] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_PIPE_AMP] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_RBRACK] = ACTIONS(1215), - [anon_sym_EQ_TILDE] = ACTIONS(1215), - [anon_sym_AMP_GT] = ACTIONS(1215), - [anon_sym_AMP_GT_GT] = ACTIONS(1215), - [anon_sym_LT_AMP] = ACTIONS(1215), - [anon_sym_GT_AMP] = ACTIONS(1215), - [anon_sym_GT_PIPE] = ACTIONS(1215), - [anon_sym_LT_LT_DASH] = ACTIONS(1215), - [anon_sym_LT_LT_LT] = ACTIONS(1215), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_CARET] = ACTIONS(1215), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1215), - [anon_sym_DOLLAR] = ACTIONS(1236), - [sym__special_character] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_raw_string] = ACTIONS(1215), - [sym_ansi_c_string] = ACTIONS(1215), - [aux_sym_number_token1] = ACTIONS(1215), - [aux_sym_number_token2] = ACTIONS(1215), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), - [anon_sym_BQUOTE] = ACTIONS(1215), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1215), - [anon_sym_LT_LPAREN] = ACTIONS(1215), - [anon_sym_GT_LPAREN] = ACTIONS(1215), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1240), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1240), - [anon_sym_0] = ACTIONS(1236), - [anon_sym__] = ACTIONS(1236), - [sym_test_operator] = ACTIONS(1215), - [sym_file_descriptor] = ACTIONS(1217), - [sym__bare_dollar] = ACTIONS(1217), - [sym__brace_start] = ACTIONS(1217), - }, - [341] = { - [aux_sym_concatenation_repeat1] = STATE(345), - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1225), - [anon_sym_GT_AMP] = ACTIONS(1225), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(180), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [342] = { - [aux_sym_concatenation_repeat1] = STATE(345), - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1225), - [anon_sym_GT_AMP] = ACTIONS(1225), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(180), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [343] = { - [aux_sym_concatenation_repeat1] = STATE(344), - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1242), - [anon_sym_GT_AMP] = ACTIONS(1242), - [anon_sym_GT_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), - [anon_sym_LF] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_raw_string] = ACTIONS(1242), - [sym_ansi_c_string] = ACTIONS(1242), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1242), - [sym_file_descriptor] = ACTIONS(1244), - [sym__concat] = ACTIONS(180), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), - }, - [344] = { - [aux_sym_concatenation_repeat1] = STATE(347), - [sym_word] = ACTIONS(1246), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1246), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1246), - [anon_sym_BANG_EQ] = ACTIONS(1246), - [anon_sym_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1246), - [anon_sym_PIPE_PIPE] = ACTIONS(1246), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_STAR_STAR] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_SEMI_SEMI] = ACTIONS(1246), - [anon_sym_PIPE_AMP] = ACTIONS(1246), - [anon_sym_EQ_TILDE] = ACTIONS(1246), - [anon_sym_AMP_GT] = ACTIONS(1246), - [anon_sym_AMP_GT_GT] = ACTIONS(1246), - [anon_sym_LT_AMP] = ACTIONS(1246), - [anon_sym_GT_AMP] = ACTIONS(1246), - [anon_sym_GT_PIPE] = ACTIONS(1246), - [anon_sym_LT_LT_DASH] = ACTIONS(1246), - [anon_sym_LF] = ACTIONS(1246), - [anon_sym_LT_LT_LT] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1246), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(1246), - [sym__special_character] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_raw_string] = ACTIONS(1246), - [sym_ansi_c_string] = ACTIONS(1246), - [aux_sym_number_token1] = ACTIONS(1246), - [aux_sym_number_token2] = ACTIONS(1246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1246), - [anon_sym_BQUOTE] = ACTIONS(1246), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1246), - [anon_sym_LT_LPAREN] = ACTIONS(1246), - [anon_sym_GT_LPAREN] = ACTIONS(1246), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1246), - [sym_file_descriptor] = ACTIONS(1248), - [sym__concat] = ACTIONS(1250), - [sym__bare_dollar] = ACTIONS(1248), - [sym__brace_start] = ACTIONS(1248), - }, - [345] = { - [aux_sym_concatenation_repeat1] = STATE(347), - [sym_word] = ACTIONS(1252), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_EQ] = ACTIONS(1252), - [anon_sym_DASH_EQ] = ACTIONS(1252), - [anon_sym_STAR_EQ] = ACTIONS(1252), - [anon_sym_SLASH_EQ] = ACTIONS(1252), - [anon_sym_PERCENT_EQ] = ACTIONS(1252), - [anon_sym_LT_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_GT_EQ] = ACTIONS(1252), - [anon_sym_AMP_EQ] = ACTIONS(1252), - [anon_sym_CARET_EQ] = ACTIONS(1252), - [anon_sym_PIPE_EQ] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_GT_PIPE] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_QMARK] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1252), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_ansi_c_string] = ACTIONS(1252), - [aux_sym_number_token1] = ACTIONS(1252), - [aux_sym_number_token2] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1254), - [sym__concat] = ACTIONS(1256), - [sym__bare_dollar] = ACTIONS(1254), - [sym__brace_start] = ACTIONS(1254), - }, - [346] = { - [aux_sym_concatenation_repeat1] = STATE(345), - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1225), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1225), - [anon_sym_GT_AMP] = ACTIONS(1225), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [aux_sym_concatenation_token1] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(180), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [347] = { - [aux_sym_concatenation_repeat1] = STATE(347), - [sym_word] = ACTIONS(1258), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_SEMI_SEMI] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_EQ_TILDE] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1258), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1258), - [anon_sym_GT_AMP] = ACTIONS(1258), - [anon_sym_GT_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), - [aux_sym_concatenation_token1] = ACTIONS(1260), - [anon_sym_DOLLAR] = ACTIONS(1258), - [sym__special_character] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_raw_string] = ACTIONS(1258), - [sym_ansi_c_string] = ACTIONS(1258), - [aux_sym_number_token1] = ACTIONS(1258), - [aux_sym_number_token2] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), - [anon_sym_LT_LPAREN] = ACTIONS(1258), - [anon_sym_GT_LPAREN] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1258), - [sym_file_descriptor] = ACTIONS(1263), - [sym__concat] = ACTIONS(1265), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), - }, - [348] = { - [aux_sym_concatenation_repeat1] = STATE(359), - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1225), - [anon_sym_GT_AMP] = ACTIONS(1225), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [aux_sym_concatenation_token1] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(262), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [349] = { - [sym_word] = ACTIONS(1268), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_EQ] = ACTIONS(1268), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_SEMI_SEMI] = ACTIONS(1268), - [anon_sym_PIPE_AMP] = ACTIONS(1268), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1268), - [anon_sym_LT_AMP] = ACTIONS(1268), - [anon_sym_GT_AMP] = ACTIONS(1268), - [anon_sym_GT_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT_DASH] = ACTIONS(1268), - [anon_sym_LF] = ACTIONS(1268), - [anon_sym_LT_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), - [aux_sym_concatenation_token1] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_raw_string] = ACTIONS(1268), - [sym_ansi_c_string] = ACTIONS(1268), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), - [anon_sym_LT_LPAREN] = ACTIONS(1268), - [anon_sym_GT_LPAREN] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1268), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), - }, - [350] = { - [sym_word] = ACTIONS(1272), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_EQ] = ACTIONS(1272), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_PIPE_PIPE] = ACTIONS(1272), - [anon_sym_LT_LT] = ACTIONS(1272), - [anon_sym_GT_GT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_STAR_STAR] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_SEMI_SEMI] = ACTIONS(1272), - [anon_sym_PIPE_AMP] = ACTIONS(1272), - [anon_sym_EQ_TILDE] = ACTIONS(1272), - [anon_sym_AMP_GT] = ACTIONS(1272), - [anon_sym_AMP_GT_GT] = ACTIONS(1272), - [anon_sym_LT_AMP] = ACTIONS(1272), - [anon_sym_GT_AMP] = ACTIONS(1272), - [anon_sym_GT_PIPE] = ACTIONS(1272), - [anon_sym_LT_LT_DASH] = ACTIONS(1272), - [anon_sym_LF] = ACTIONS(1272), - [anon_sym_LT_LT_LT] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1272), - [anon_sym_QMARK] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1272), - [aux_sym_concatenation_token1] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1272), - [sym__special_character] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_raw_string] = ACTIONS(1272), - [sym_ansi_c_string] = ACTIONS(1272), - [aux_sym_number_token1] = ACTIONS(1272), - [aux_sym_number_token2] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1272), - [anon_sym_LT_LPAREN] = ACTIONS(1272), - [anon_sym_GT_LPAREN] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1272), - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [sym__bare_dollar] = ACTIONS(1274), - [sym__brace_start] = ACTIONS(1274), - }, - [351] = { - [sym_word] = ACTIONS(1258), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_SEMI_SEMI] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_EQ_TILDE] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1258), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1258), - [anon_sym_GT_AMP] = ACTIONS(1258), - [anon_sym_GT_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), - [aux_sym_concatenation_token1] = ACTIONS(1258), - [anon_sym_DOLLAR] = ACTIONS(1258), - [sym__special_character] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_raw_string] = ACTIONS(1258), - [sym_ansi_c_string] = ACTIONS(1258), - [aux_sym_number_token1] = ACTIONS(1258), - [aux_sym_number_token2] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), - [anon_sym_LT_LPAREN] = ACTIONS(1258), - [anon_sym_GT_LPAREN] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1258), - [sym_file_descriptor] = ACTIONS(1263), - [sym__concat] = ACTIONS(1263), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), - }, - [352] = { - [sym_word] = ACTIONS(1276), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1276), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_EQ] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_EQ] = ACTIONS(1276), - [anon_sym_DASH_EQ] = ACTIONS(1276), - [anon_sym_STAR_EQ] = ACTIONS(1276), - [anon_sym_SLASH_EQ] = ACTIONS(1276), - [anon_sym_PERCENT_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_GT_EQ] = ACTIONS(1276), - [anon_sym_AMP_EQ] = ACTIONS(1276), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1276), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_EQ] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_STAR_STAR] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1276), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1276), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_GT_PIPE] = ACTIONS(1276), - [anon_sym_LT_LT_DASH] = ACTIONS(1276), - [anon_sym_LF] = ACTIONS(1276), - [anon_sym_LT_LT_LT] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1276), - [aux_sym_concatenation_token1] = ACTIONS(1276), - [anon_sym_DOLLAR] = ACTIONS(1276), - [sym__special_character] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_raw_string] = ACTIONS(1276), - [sym_ansi_c_string] = ACTIONS(1276), - [aux_sym_number_token1] = ACTIONS(1276), - [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1276), - [anon_sym_LT_LPAREN] = ACTIONS(1276), - [anon_sym_GT_LPAREN] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1276), - [sym_file_descriptor] = ACTIONS(1278), - [sym__concat] = ACTIONS(1278), - [sym__bare_dollar] = ACTIONS(1278), - [sym__brace_start] = ACTIONS(1278), - }, - [353] = { - [sym_word] = ACTIONS(1280), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_EQ] = ACTIONS(1280), - [anon_sym_DASH_EQ] = ACTIONS(1280), - [anon_sym_STAR_EQ] = ACTIONS(1280), - [anon_sym_SLASH_EQ] = ACTIONS(1280), - [anon_sym_PERCENT_EQ] = ACTIONS(1280), - [anon_sym_LT_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_GT_EQ] = ACTIONS(1280), - [anon_sym_AMP_EQ] = ACTIONS(1280), - [anon_sym_CARET_EQ] = ACTIONS(1280), - [anon_sym_PIPE_EQ] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1280), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_PERCENT] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_SEMI_SEMI] = ACTIONS(1280), - [anon_sym_PIPE_AMP] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_AMP_GT] = ACTIONS(1280), - [anon_sym_AMP_GT_GT] = ACTIONS(1280), - [anon_sym_LT_AMP] = ACTIONS(1280), - [anon_sym_GT_AMP] = ACTIONS(1280), - [anon_sym_GT_PIPE] = ACTIONS(1280), - [anon_sym_LT_LT_DASH] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1280), - [anon_sym_LT_LT_LT] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1280), - [aux_sym_concatenation_token1] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [sym__special_character] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_raw_string] = ACTIONS(1280), - [sym_ansi_c_string] = ACTIONS(1280), - [aux_sym_number_token1] = ACTIONS(1280), - [aux_sym_number_token2] = ACTIONS(1280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1280), - [anon_sym_BQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1280), - [anon_sym_LT_LPAREN] = ACTIONS(1280), - [anon_sym_GT_LPAREN] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1280), - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [sym__bare_dollar] = ACTIONS(1282), - [sym__brace_start] = ACTIONS(1282), - }, - [354] = { - [sym_word] = ACTIONS(1284), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1284), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_PERCENT_EQ] = ACTIONS(1284), - [anon_sym_LT_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_GT_EQ] = ACTIONS(1284), - [anon_sym_AMP_EQ] = ACTIONS(1284), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1284), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_EQ] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(1284), - [anon_sym_PIPE_PIPE] = ACTIONS(1284), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_STAR_STAR] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_SEMI_SEMI] = ACTIONS(1284), - [anon_sym_PIPE_AMP] = ACTIONS(1284), - [anon_sym_EQ_TILDE] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1284), - [anon_sym_LT_AMP] = ACTIONS(1284), - [anon_sym_GT_AMP] = ACTIONS(1284), - [anon_sym_GT_PIPE] = ACTIONS(1284), - [anon_sym_LT_LT_DASH] = ACTIONS(1284), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_LT_LT_LT] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1284), - [aux_sym_concatenation_token1] = ACTIONS(1284), - [anon_sym_DOLLAR] = ACTIONS(1284), - [sym__special_character] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_raw_string] = ACTIONS(1284), - [sym_ansi_c_string] = ACTIONS(1284), - [aux_sym_number_token1] = ACTIONS(1284), - [aux_sym_number_token2] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1284), - [anon_sym_LT_LPAREN] = ACTIONS(1284), - [anon_sym_GT_LPAREN] = ACTIONS(1284), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1284), - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [sym__bare_dollar] = ACTIONS(1286), - [sym__brace_start] = ACTIONS(1286), - }, - [355] = { - [aux_sym_concatenation_repeat1] = STATE(355), - [sym_word] = ACTIONS(1258), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_SEMI_SEMI] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_EQ_TILDE] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1258), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1258), - [anon_sym_GT_AMP] = ACTIONS(1258), - [anon_sym_GT_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), - [aux_sym_concatenation_token1] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1258), - [sym__special_character] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_raw_string] = ACTIONS(1258), - [sym_ansi_c_string] = ACTIONS(1258), - [aux_sym_number_token1] = ACTIONS(1258), - [aux_sym_number_token2] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), - [anon_sym_LT_LPAREN] = ACTIONS(1258), - [anon_sym_GT_LPAREN] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1258), - [sym_file_descriptor] = ACTIONS(1263), - [sym__concat] = ACTIONS(1291), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), - }, - [356] = { - [sym_word] = ACTIONS(1294), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1294), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_EQ] = ACTIONS(1294), - [anon_sym_DASH_EQ] = ACTIONS(1294), - [anon_sym_STAR_EQ] = ACTIONS(1294), - [anon_sym_SLASH_EQ] = ACTIONS(1294), - [anon_sym_PERCENT_EQ] = ACTIONS(1294), - [anon_sym_LT_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP_EQ] = ACTIONS(1294), - [anon_sym_CARET_EQ] = ACTIONS(1294), - [anon_sym_PIPE_EQ] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [anon_sym_GT_PIPE] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), - [aux_sym_concatenation_token1] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_ansi_c_string] = ACTIONS(1294), - [aux_sym_number_token1] = ACTIONS(1294), - [aux_sym_number_token2] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1294), - [sym_file_descriptor] = ACTIONS(1296), - [sym__concat] = ACTIONS(1296), - [sym__bare_dollar] = ACTIONS(1296), - [sym__brace_start] = ACTIONS(1296), - }, - [357] = { - [sym_word] = ACTIONS(1298), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1298), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_EQ] = ACTIONS(1298), - [anon_sym_DASH_EQ] = ACTIONS(1298), - [anon_sym_STAR_EQ] = ACTIONS(1298), - [anon_sym_SLASH_EQ] = ACTIONS(1298), - [anon_sym_PERCENT_EQ] = ACTIONS(1298), - [anon_sym_LT_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_GT_EQ] = ACTIONS(1298), - [anon_sym_AMP_EQ] = ACTIONS(1298), - [anon_sym_CARET_EQ] = ACTIONS(1298), - [anon_sym_PIPE_EQ] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_AMP_AMP] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1298), - [anon_sym_LT_LT] = ACTIONS(1298), - [anon_sym_GT_GT] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_SEMI_SEMI] = ACTIONS(1298), - [anon_sym_PIPE_AMP] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_AMP_GT] = ACTIONS(1298), - [anon_sym_AMP_GT_GT] = ACTIONS(1298), - [anon_sym_LT_AMP] = ACTIONS(1298), - [anon_sym_GT_AMP] = ACTIONS(1298), - [anon_sym_GT_PIPE] = ACTIONS(1298), - [anon_sym_LT_LT_DASH] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_LT_LT_LT] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), - [aux_sym_concatenation_token1] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [sym__special_character] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_raw_string] = ACTIONS(1298), - [sym_ansi_c_string] = ACTIONS(1298), - [aux_sym_number_token1] = ACTIONS(1298), - [aux_sym_number_token2] = ACTIONS(1298), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1298), - [anon_sym_BQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1298), - [anon_sym_LT_LPAREN] = ACTIONS(1298), - [anon_sym_GT_LPAREN] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1298), - [sym_file_descriptor] = ACTIONS(1300), - [sym__concat] = ACTIONS(1300), - [sym__bare_dollar] = ACTIONS(1300), - [sym__brace_start] = ACTIONS(1300), - }, - [358] = { - [sym_word] = ACTIONS(1302), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1302), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_AMP_EQ] = ACTIONS(1302), - [anon_sym_CARET_EQ] = ACTIONS(1302), - [anon_sym_PIPE_EQ] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_SEMI_SEMI] = ACTIONS(1302), - [anon_sym_PIPE_AMP] = ACTIONS(1302), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_AMP_GT] = ACTIONS(1302), - [anon_sym_AMP_GT_GT] = ACTIONS(1302), - [anon_sym_LT_AMP] = ACTIONS(1302), - [anon_sym_GT_AMP] = ACTIONS(1302), - [anon_sym_GT_PIPE] = ACTIONS(1302), - [anon_sym_LT_LT_DASH] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_LT_LT_LT] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1302), - [aux_sym_concatenation_token1] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [sym__special_character] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_raw_string] = ACTIONS(1302), - [sym_ansi_c_string] = ACTIONS(1302), - [aux_sym_number_token1] = ACTIONS(1302), - [aux_sym_number_token2] = ACTIONS(1302), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), - [anon_sym_BQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1302), - [anon_sym_LT_LPAREN] = ACTIONS(1302), - [anon_sym_GT_LPAREN] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1302), - [sym_file_descriptor] = ACTIONS(1304), - [sym__concat] = ACTIONS(1304), - [sym__bare_dollar] = ACTIONS(1304), - [sym__brace_start] = ACTIONS(1304), - }, - [359] = { - [aux_sym_concatenation_repeat1] = STATE(355), - [sym_word] = ACTIONS(1252), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_EQ] = ACTIONS(1252), - [anon_sym_DASH_EQ] = ACTIONS(1252), - [anon_sym_STAR_EQ] = ACTIONS(1252), - [anon_sym_SLASH_EQ] = ACTIONS(1252), - [anon_sym_PERCENT_EQ] = ACTIONS(1252), - [anon_sym_LT_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_GT_EQ] = ACTIONS(1252), - [anon_sym_AMP_EQ] = ACTIONS(1252), - [anon_sym_CARET_EQ] = ACTIONS(1252), - [anon_sym_PIPE_EQ] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_SEMI_SEMI] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_GT_PIPE] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_LF] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_QMARK] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1252), - [aux_sym_concatenation_token1] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_ansi_c_string] = ACTIONS(1252), - [aux_sym_number_token1] = ACTIONS(1252), - [aux_sym_number_token2] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1254), - [sym__concat] = ACTIONS(1306), - [sym__bare_dollar] = ACTIONS(1254), - [sym__brace_start] = ACTIONS(1254), - }, - [360] = { - [aux_sym_concatenation_repeat1] = STATE(355), - [sym_word] = ACTIONS(1246), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1246), - [anon_sym_BANG_EQ] = ACTIONS(1246), - [anon_sym_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1246), - [anon_sym_PIPE_PIPE] = ACTIONS(1246), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_STAR_STAR] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_SEMI_SEMI] = ACTIONS(1246), - [anon_sym_PIPE_AMP] = ACTIONS(1246), - [anon_sym_EQ_TILDE] = ACTIONS(1246), - [anon_sym_AMP_GT] = ACTIONS(1246), - [anon_sym_AMP_GT_GT] = ACTIONS(1246), - [anon_sym_LT_AMP] = ACTIONS(1246), - [anon_sym_GT_AMP] = ACTIONS(1246), - [anon_sym_GT_PIPE] = ACTIONS(1246), - [anon_sym_LT_LT_DASH] = ACTIONS(1246), - [anon_sym_LF] = ACTIONS(1246), - [anon_sym_LT_LT_LT] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1246), - [aux_sym_concatenation_token1] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(1246), - [sym__special_character] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_raw_string] = ACTIONS(1246), - [sym_ansi_c_string] = ACTIONS(1246), - [aux_sym_number_token1] = ACTIONS(1246), - [aux_sym_number_token2] = ACTIONS(1246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1246), - [anon_sym_BQUOTE] = ACTIONS(1246), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1246), - [anon_sym_LT_LPAREN] = ACTIONS(1246), - [anon_sym_GT_LPAREN] = ACTIONS(1246), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1246), - [sym_file_descriptor] = ACTIONS(1248), - [sym__concat] = ACTIONS(1308), - [sym__bare_dollar] = ACTIONS(1248), - [sym__brace_start] = ACTIONS(1248), - }, - [361] = { - [sym_word] = ACTIONS(1310), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1310), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_EQ] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(1310), - [anon_sym_DASH_EQ] = ACTIONS(1310), - [anon_sym_STAR_EQ] = ACTIONS(1310), - [anon_sym_SLASH_EQ] = ACTIONS(1310), - [anon_sym_PERCENT_EQ] = ACTIONS(1310), - [anon_sym_LT_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_GT_EQ] = ACTIONS(1310), - [anon_sym_AMP_EQ] = ACTIONS(1310), - [anon_sym_CARET_EQ] = ACTIONS(1310), - [anon_sym_PIPE_EQ] = ACTIONS(1310), - [anon_sym_EQ_EQ] = ACTIONS(1310), - [anon_sym_BANG_EQ] = ACTIONS(1310), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_AMP_AMP] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1310), - [anon_sym_GT_GT] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1310), - [anon_sym_PERCENT] = ACTIONS(1310), - [anon_sym_STAR_STAR] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_RPAREN] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_SEMI_SEMI] = ACTIONS(1310), - [anon_sym_PIPE_AMP] = ACTIONS(1310), - [anon_sym_EQ_TILDE] = ACTIONS(1310), - [anon_sym_AMP_GT] = ACTIONS(1310), - [anon_sym_AMP_GT_GT] = ACTIONS(1310), - [anon_sym_LT_AMP] = ACTIONS(1310), - [anon_sym_GT_AMP] = ACTIONS(1310), - [anon_sym_GT_PIPE] = ACTIONS(1310), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_QMARK] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), - [aux_sym_concatenation_token1] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1310), - [sym__special_character] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_raw_string] = ACTIONS(1310), - [sym_ansi_c_string] = ACTIONS(1310), - [aux_sym_number_token1] = ACTIONS(1310), - [aux_sym_number_token2] = ACTIONS(1310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1310), - [anon_sym_BQUOTE] = ACTIONS(1310), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), - [anon_sym_LT_LPAREN] = ACTIONS(1310), - [anon_sym_GT_LPAREN] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1310), - [sym_file_descriptor] = ACTIONS(1312), - [sym__concat] = ACTIONS(1312), - [sym__bare_dollar] = ACTIONS(1312), - [sym__brace_start] = ACTIONS(1312), - }, - [362] = { - [aux_sym_concatenation_repeat1] = STATE(359), - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1225), - [anon_sym_GT_AMP] = ACTIONS(1225), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [aux_sym_concatenation_token1] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(262), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [363] = { - [aux_sym_concatenation_repeat1] = STATE(360), - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1242), - [anon_sym_GT_AMP] = ACTIONS(1242), - [anon_sym_GT_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), - [anon_sym_LF] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), - [aux_sym_concatenation_token1] = ACTIONS(238), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_raw_string] = ACTIONS(1242), - [sym_ansi_c_string] = ACTIONS(1242), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1242), - [sym_file_descriptor] = ACTIONS(1244), - [sym__concat] = ACTIONS(262), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), - }, - [364] = { - [sym_word] = ACTIONS(1314), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_EQ] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_EQ] = ACTIONS(1314), - [anon_sym_DASH_EQ] = ACTIONS(1314), - [anon_sym_STAR_EQ] = ACTIONS(1314), - [anon_sym_SLASH_EQ] = ACTIONS(1314), - [anon_sym_PERCENT_EQ] = ACTIONS(1314), - [anon_sym_LT_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_GT_EQ] = ACTIONS(1314), - [anon_sym_AMP_EQ] = ACTIONS(1314), - [anon_sym_CARET_EQ] = ACTIONS(1314), - [anon_sym_PIPE_EQ] = ACTIONS(1314), - [anon_sym_EQ_EQ] = ACTIONS(1314), - [anon_sym_BANG_EQ] = ACTIONS(1314), - [anon_sym_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_EQ] = ACTIONS(1314), - [anon_sym_AMP_AMP] = ACTIONS(1314), - [anon_sym_PIPE_PIPE] = ACTIONS(1314), - [anon_sym_LT_LT] = ACTIONS(1314), - [anon_sym_GT_GT] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1314), - [anon_sym_PERCENT] = ACTIONS(1314), - [anon_sym_STAR_STAR] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_GT] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_SEMI_SEMI] = ACTIONS(1314), - [anon_sym_PIPE_AMP] = ACTIONS(1314), - [anon_sym_EQ_TILDE] = ACTIONS(1314), - [anon_sym_AMP_GT] = ACTIONS(1314), - [anon_sym_AMP_GT_GT] = ACTIONS(1314), - [anon_sym_LT_AMP] = ACTIONS(1314), - [anon_sym_GT_AMP] = ACTIONS(1314), - [anon_sym_GT_PIPE] = ACTIONS(1314), - [anon_sym_LT_LT_DASH] = ACTIONS(1314), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_LT_LT_LT] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_CARET] = ACTIONS(1314), - [anon_sym_QMARK] = ACTIONS(1314), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), - [aux_sym_concatenation_token1] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1314), - [sym__special_character] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_raw_string] = ACTIONS(1314), - [sym_ansi_c_string] = ACTIONS(1314), - [aux_sym_number_token1] = ACTIONS(1314), - [aux_sym_number_token2] = ACTIONS(1314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1314), - [anon_sym_BQUOTE] = ACTIONS(1314), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), - [anon_sym_LT_LPAREN] = ACTIONS(1314), - [anon_sym_GT_LPAREN] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1314), - [sym_file_descriptor] = ACTIONS(1316), - [sym__concat] = ACTIONS(1316), - [sym__bare_dollar] = ACTIONS(1316), - [sym__brace_start] = ACTIONS(1316), - }, - [365] = { - [sym_word] = ACTIONS(1318), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_EQ] = ACTIONS(1318), - [anon_sym_DASH_EQ] = ACTIONS(1318), - [anon_sym_STAR_EQ] = ACTIONS(1318), - [anon_sym_SLASH_EQ] = ACTIONS(1318), - [anon_sym_PERCENT_EQ] = ACTIONS(1318), - [anon_sym_LT_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_GT_EQ] = ACTIONS(1318), - [anon_sym_AMP_EQ] = ACTIONS(1318), - [anon_sym_CARET_EQ] = ACTIONS(1318), - [anon_sym_PIPE_EQ] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(1318), - [anon_sym_GT_GT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_STAR_STAR] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_SEMI_SEMI] = ACTIONS(1318), - [anon_sym_PIPE_AMP] = ACTIONS(1318), - [anon_sym_EQ_TILDE] = ACTIONS(1318), - [anon_sym_AMP_GT] = ACTIONS(1318), - [anon_sym_AMP_GT_GT] = ACTIONS(1318), - [anon_sym_LT_AMP] = ACTIONS(1318), - [anon_sym_GT_AMP] = ACTIONS(1318), - [anon_sym_GT_PIPE] = ACTIONS(1318), - [anon_sym_LT_LT_DASH] = ACTIONS(1318), - [anon_sym_LF] = ACTIONS(1318), - [anon_sym_LT_LT_LT] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_CARET] = ACTIONS(1318), - [anon_sym_QMARK] = ACTIONS(1318), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1318), - [aux_sym_concatenation_token1] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1318), - [sym__special_character] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_raw_string] = ACTIONS(1318), - [sym_ansi_c_string] = ACTIONS(1318), - [aux_sym_number_token1] = ACTIONS(1318), - [aux_sym_number_token2] = ACTIONS(1318), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1318), - [anon_sym_BQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1318), - [anon_sym_LT_LPAREN] = ACTIONS(1318), - [anon_sym_GT_LPAREN] = ACTIONS(1318), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1318), - [sym_file_descriptor] = ACTIONS(1320), - [sym__concat] = ACTIONS(1320), - [sym__bare_dollar] = ACTIONS(1320), - [sym__brace_start] = ACTIONS(1320), - }, - [366] = { - [sym_word] = ACTIONS(1322), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1322), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_EQ] = ACTIONS(1322), - [anon_sym_DASH_EQ] = ACTIONS(1322), - [anon_sym_STAR_EQ] = ACTIONS(1322), - [anon_sym_SLASH_EQ] = ACTIONS(1322), - [anon_sym_PERCENT_EQ] = ACTIONS(1322), - [anon_sym_LT_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_GT_EQ] = ACTIONS(1322), - [anon_sym_AMP_EQ] = ACTIONS(1322), - [anon_sym_CARET_EQ] = ACTIONS(1322), - [anon_sym_PIPE_EQ] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_STAR_STAR] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_SEMI_SEMI] = ACTIONS(1322), - [anon_sym_PIPE_AMP] = ACTIONS(1322), - [anon_sym_EQ_TILDE] = ACTIONS(1322), - [anon_sym_AMP_GT] = ACTIONS(1322), - [anon_sym_AMP_GT_GT] = ACTIONS(1322), - [anon_sym_LT_AMP] = ACTIONS(1322), - [anon_sym_GT_AMP] = ACTIONS(1322), - [anon_sym_GT_PIPE] = ACTIONS(1322), - [anon_sym_LT_LT_DASH] = ACTIONS(1322), - [anon_sym_LF] = ACTIONS(1322), - [anon_sym_LT_LT_LT] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_CARET] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1322), - [aux_sym_concatenation_token1] = ACTIONS(1322), - [anon_sym_DOLLAR] = ACTIONS(1322), - [sym__special_character] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_raw_string] = ACTIONS(1322), - [sym_ansi_c_string] = ACTIONS(1322), - [aux_sym_number_token1] = ACTIONS(1322), - [aux_sym_number_token2] = ACTIONS(1322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1322), - [anon_sym_BQUOTE] = ACTIONS(1322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1322), - [anon_sym_LT_LPAREN] = ACTIONS(1322), - [anon_sym_GT_LPAREN] = ACTIONS(1322), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1322), - [sym_file_descriptor] = ACTIONS(1324), - [sym__concat] = ACTIONS(1324), - [sym__bare_dollar] = ACTIONS(1324), - [sym__brace_start] = ACTIONS(1324), - }, - [367] = { - [sym_word] = ACTIONS(1326), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_EQ] = ACTIONS(1326), - [anon_sym_DASH_EQ] = ACTIONS(1326), - [anon_sym_STAR_EQ] = ACTIONS(1326), - [anon_sym_SLASH_EQ] = ACTIONS(1326), - [anon_sym_PERCENT_EQ] = ACTIONS(1326), - [anon_sym_LT_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_GT_EQ] = ACTIONS(1326), - [anon_sym_AMP_EQ] = ACTIONS(1326), - [anon_sym_CARET_EQ] = ACTIONS(1326), - [anon_sym_PIPE_EQ] = ACTIONS(1326), - [anon_sym_EQ_EQ] = ACTIONS(1326), - [anon_sym_BANG_EQ] = ACTIONS(1326), - [anon_sym_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_EQ] = ACTIONS(1326), - [anon_sym_AMP_AMP] = ACTIONS(1326), - [anon_sym_PIPE_PIPE] = ACTIONS(1326), - [anon_sym_LT_LT] = ACTIONS(1326), - [anon_sym_GT_GT] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym_PERCENT] = ACTIONS(1326), - [anon_sym_STAR_STAR] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_GT] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_SEMI_SEMI] = ACTIONS(1326), - [anon_sym_PIPE_AMP] = ACTIONS(1326), - [anon_sym_EQ_TILDE] = ACTIONS(1326), - [anon_sym_AMP_GT] = ACTIONS(1326), - [anon_sym_AMP_GT_GT] = ACTIONS(1326), - [anon_sym_LT_AMP] = ACTIONS(1326), - [anon_sym_GT_AMP] = ACTIONS(1326), - [anon_sym_GT_PIPE] = ACTIONS(1326), - [anon_sym_LT_LT_DASH] = ACTIONS(1326), - [anon_sym_LF] = ACTIONS(1326), - [anon_sym_LT_LT_LT] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(1326), - [anon_sym_QMARK] = ACTIONS(1326), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1326), - [aux_sym_concatenation_token1] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1326), - [sym__special_character] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_raw_string] = ACTIONS(1326), - [sym_ansi_c_string] = ACTIONS(1326), - [aux_sym_number_token1] = ACTIONS(1326), - [aux_sym_number_token2] = ACTIONS(1326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1326), - [anon_sym_BQUOTE] = ACTIONS(1326), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1326), - [anon_sym_LT_LPAREN] = ACTIONS(1326), - [anon_sym_GT_LPAREN] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1326), - [sym_file_descriptor] = ACTIONS(1328), - [sym__concat] = ACTIONS(1328), - [sym__bare_dollar] = ACTIONS(1328), - [sym__brace_start] = ACTIONS(1328), - }, - [368] = { - [sym_word] = ACTIONS(1330), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1330), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_EQ] = ACTIONS(1330), - [anon_sym_DASH_EQ] = ACTIONS(1330), - [anon_sym_STAR_EQ] = ACTIONS(1330), - [anon_sym_SLASH_EQ] = ACTIONS(1330), - [anon_sym_PERCENT_EQ] = ACTIONS(1330), - [anon_sym_LT_LT_EQ] = ACTIONS(1330), - [anon_sym_GT_GT_EQ] = ACTIONS(1330), - [anon_sym_AMP_EQ] = ACTIONS(1330), - [anon_sym_CARET_EQ] = ACTIONS(1330), - [anon_sym_PIPE_EQ] = ACTIONS(1330), - [anon_sym_EQ_EQ] = ACTIONS(1330), - [anon_sym_BANG_EQ] = ACTIONS(1330), - [anon_sym_LT_EQ] = ACTIONS(1330), - [anon_sym_GT_EQ] = ACTIONS(1330), - [anon_sym_AMP_AMP] = ACTIONS(1330), - [anon_sym_PIPE_PIPE] = ACTIONS(1330), - [anon_sym_LT_LT] = ACTIONS(1330), - [anon_sym_GT_GT] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_SLASH] = ACTIONS(1330), - [anon_sym_PERCENT] = ACTIONS(1330), - [anon_sym_STAR_STAR] = ACTIONS(1330), - [anon_sym_LT] = ACTIONS(1330), - [anon_sym_GT] = ACTIONS(1330), - [anon_sym_RPAREN] = ACTIONS(1330), - [anon_sym_PIPE] = ACTIONS(1330), - [anon_sym_SEMI_SEMI] = ACTIONS(1330), - [anon_sym_PIPE_AMP] = ACTIONS(1330), - [anon_sym_EQ_TILDE] = ACTIONS(1330), - [anon_sym_AMP_GT] = ACTIONS(1330), - [anon_sym_AMP_GT_GT] = ACTIONS(1330), - [anon_sym_LT_AMP] = ACTIONS(1330), - [anon_sym_GT_AMP] = ACTIONS(1330), - [anon_sym_GT_PIPE] = ACTIONS(1330), - [anon_sym_LT_LT_DASH] = ACTIONS(1330), - [anon_sym_LF] = ACTIONS(1330), - [anon_sym_LT_LT_LT] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_CARET] = ACTIONS(1330), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1330), - [aux_sym_concatenation_token1] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1330), - [sym__special_character] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_raw_string] = ACTIONS(1330), - [sym_ansi_c_string] = ACTIONS(1330), - [aux_sym_number_token1] = ACTIONS(1330), - [aux_sym_number_token2] = ACTIONS(1330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1330), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1330), - [anon_sym_BQUOTE] = ACTIONS(1330), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1330), - [anon_sym_LT_LPAREN] = ACTIONS(1330), - [anon_sym_GT_LPAREN] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1330), - [sym_file_descriptor] = ACTIONS(1332), - [sym__concat] = ACTIONS(1332), - [sym__bare_dollar] = ACTIONS(1332), - [sym__brace_start] = ACTIONS(1332), - }, - [369] = { - [sym_word] = ACTIONS(1334), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1334), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_EQ] = ACTIONS(1334), - [anon_sym_DASH_EQ] = ACTIONS(1334), - [anon_sym_STAR_EQ] = ACTIONS(1334), - [anon_sym_SLASH_EQ] = ACTIONS(1334), - [anon_sym_PERCENT_EQ] = ACTIONS(1334), - [anon_sym_LT_LT_EQ] = ACTIONS(1334), - [anon_sym_GT_GT_EQ] = ACTIONS(1334), - [anon_sym_AMP_EQ] = ACTIONS(1334), - [anon_sym_CARET_EQ] = ACTIONS(1334), - [anon_sym_PIPE_EQ] = ACTIONS(1334), - [anon_sym_EQ_EQ] = ACTIONS(1334), - [anon_sym_BANG_EQ] = ACTIONS(1334), - [anon_sym_LT_EQ] = ACTIONS(1334), - [anon_sym_GT_EQ] = ACTIONS(1334), - [anon_sym_AMP_AMP] = ACTIONS(1334), - [anon_sym_PIPE_PIPE] = ACTIONS(1334), - [anon_sym_LT_LT] = ACTIONS(1334), - [anon_sym_GT_GT] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym_PERCENT] = ACTIONS(1334), - [anon_sym_STAR_STAR] = ACTIONS(1334), - [anon_sym_LT] = ACTIONS(1334), - [anon_sym_GT] = ACTIONS(1334), - [anon_sym_RPAREN] = ACTIONS(1334), - [anon_sym_PIPE] = ACTIONS(1334), - [anon_sym_SEMI_SEMI] = ACTIONS(1334), - [anon_sym_PIPE_AMP] = ACTIONS(1334), - [anon_sym_EQ_TILDE] = ACTIONS(1334), - [anon_sym_AMP_GT] = ACTIONS(1334), - [anon_sym_AMP_GT_GT] = ACTIONS(1334), - [anon_sym_LT_AMP] = ACTIONS(1334), - [anon_sym_GT_AMP] = ACTIONS(1334), - [anon_sym_GT_PIPE] = ACTIONS(1334), - [anon_sym_LT_LT_DASH] = ACTIONS(1334), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_LT_LT_LT] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_CARET] = ACTIONS(1334), - [anon_sym_QMARK] = ACTIONS(1334), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1334), - [aux_sym_concatenation_token1] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1334), - [sym__special_character] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_raw_string] = ACTIONS(1334), - [sym_ansi_c_string] = ACTIONS(1334), - [aux_sym_number_token1] = ACTIONS(1334), - [aux_sym_number_token2] = ACTIONS(1334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1334), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1334), - [anon_sym_BQUOTE] = ACTIONS(1334), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1334), - [anon_sym_LT_LPAREN] = ACTIONS(1334), - [anon_sym_GT_LPAREN] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1334), - [sym_file_descriptor] = ACTIONS(1336), - [sym__concat] = ACTIONS(1336), - [sym__bare_dollar] = ACTIONS(1336), - [sym__brace_start] = ACTIONS(1336), - }, - [370] = { - [sym_word] = ACTIONS(1268), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_EQ] = ACTIONS(1268), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_SEMI_SEMI] = ACTIONS(1268), - [anon_sym_PIPE_AMP] = ACTIONS(1268), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1268), - [anon_sym_LT_AMP] = ACTIONS(1268), - [anon_sym_GT_AMP] = ACTIONS(1268), - [anon_sym_GT_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT_DASH] = ACTIONS(1268), - [anon_sym_LF] = ACTIONS(1268), - [anon_sym_LT_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), - [aux_sym_concatenation_token1] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_raw_string] = ACTIONS(1268), - [sym_ansi_c_string] = ACTIONS(1268), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), - [anon_sym_LT_LPAREN] = ACTIONS(1268), - [anon_sym_GT_LPAREN] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1268), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), - }, - [371] = { - [sym_word] = ACTIONS(1338), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1338), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_EQ] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_EQ] = ACTIONS(1338), - [anon_sym_DASH_EQ] = ACTIONS(1338), - [anon_sym_STAR_EQ] = ACTIONS(1338), - [anon_sym_SLASH_EQ] = ACTIONS(1338), - [anon_sym_PERCENT_EQ] = ACTIONS(1338), - [anon_sym_LT_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_GT_EQ] = ACTIONS(1338), - [anon_sym_AMP_EQ] = ACTIONS(1338), - [anon_sym_CARET_EQ] = ACTIONS(1338), - [anon_sym_PIPE_EQ] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1338), - [anon_sym_LT_LT] = ACTIONS(1338), - [anon_sym_GT_GT] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_PERCENT] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_SEMI_SEMI] = ACTIONS(1338), - [anon_sym_PIPE_AMP] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_AMP_GT] = ACTIONS(1338), - [anon_sym_AMP_GT_GT] = ACTIONS(1338), - [anon_sym_LT_AMP] = ACTIONS(1338), - [anon_sym_GT_AMP] = ACTIONS(1338), - [anon_sym_GT_PIPE] = ACTIONS(1338), - [anon_sym_LT_LT_DASH] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_LT_LT_LT] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1338), - [aux_sym_concatenation_token1] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [sym__special_character] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_raw_string] = ACTIONS(1338), - [sym_ansi_c_string] = ACTIONS(1338), - [aux_sym_number_token1] = ACTIONS(1338), - [aux_sym_number_token2] = ACTIONS(1338), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1338), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1338), - [anon_sym_BQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1338), - [anon_sym_LT_LPAREN] = ACTIONS(1338), - [anon_sym_GT_LPAREN] = ACTIONS(1338), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1338), - [sym_file_descriptor] = ACTIONS(1340), - [sym__concat] = ACTIONS(1340), - [sym__bare_dollar] = ACTIONS(1340), - [sym__brace_start] = ACTIONS(1340), - }, - [372] = { - [sym_word] = ACTIONS(1342), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(1342), - [anon_sym_DASH_EQ] = ACTIONS(1342), - [anon_sym_STAR_EQ] = ACTIONS(1342), - [anon_sym_SLASH_EQ] = ACTIONS(1342), - [anon_sym_PERCENT_EQ] = ACTIONS(1342), - [anon_sym_LT_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_GT_EQ] = ACTIONS(1342), - [anon_sym_AMP_EQ] = ACTIONS(1342), - [anon_sym_CARET_EQ] = ACTIONS(1342), - [anon_sym_PIPE_EQ] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_AMP_AMP] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1342), - [anon_sym_LT_LT] = ACTIONS(1342), - [anon_sym_GT_GT] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_SEMI_SEMI] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_AMP_GT] = ACTIONS(1342), - [anon_sym_AMP_GT_GT] = ACTIONS(1342), - [anon_sym_LT_AMP] = ACTIONS(1342), - [anon_sym_GT_AMP] = ACTIONS(1342), - [anon_sym_GT_PIPE] = ACTIONS(1342), - [anon_sym_LT_LT_DASH] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1342), - [anon_sym_LT_LT_LT] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1342), - [aux_sym_concatenation_token1] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [sym__special_character] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_raw_string] = ACTIONS(1342), - [sym_ansi_c_string] = ACTIONS(1342), - [aux_sym_number_token1] = ACTIONS(1342), - [aux_sym_number_token2] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1342), - [anon_sym_LT_LPAREN] = ACTIONS(1342), - [anon_sym_GT_LPAREN] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1342), - [sym_file_descriptor] = ACTIONS(1344), - [sym__concat] = ACTIONS(1344), - [sym__bare_dollar] = ACTIONS(1344), - [sym__brace_start] = ACTIONS(1344), - }, - [373] = { - [sym_word] = ACTIONS(1346), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1346), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_EQ] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_EQ] = ACTIONS(1346), - [anon_sym_DASH_EQ] = ACTIONS(1346), - [anon_sym_STAR_EQ] = ACTIONS(1346), - [anon_sym_SLASH_EQ] = ACTIONS(1346), - [anon_sym_PERCENT_EQ] = ACTIONS(1346), - [anon_sym_LT_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_GT_EQ] = ACTIONS(1346), - [anon_sym_AMP_EQ] = ACTIONS(1346), - [anon_sym_CARET_EQ] = ACTIONS(1346), - [anon_sym_PIPE_EQ] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_AMP_AMP] = ACTIONS(1346), - [anon_sym_PIPE_PIPE] = ACTIONS(1346), - [anon_sym_LT_LT] = ACTIONS(1346), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_PERCENT] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_SEMI_SEMI] = ACTIONS(1346), - [anon_sym_PIPE_AMP] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_AMP_GT] = ACTIONS(1346), - [anon_sym_AMP_GT_GT] = ACTIONS(1346), - [anon_sym_LT_AMP] = ACTIONS(1346), - [anon_sym_GT_AMP] = ACTIONS(1346), - [anon_sym_GT_PIPE] = ACTIONS(1346), - [anon_sym_LT_LT_DASH] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1346), - [anon_sym_LT_LT_LT] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_QMARK] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1346), - [aux_sym_concatenation_token1] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [sym__special_character] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_raw_string] = ACTIONS(1346), - [sym_ansi_c_string] = ACTIONS(1346), - [aux_sym_number_token1] = ACTIONS(1346), - [aux_sym_number_token2] = ACTIONS(1346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), - [anon_sym_BQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1346), - [anon_sym_LT_LPAREN] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1346), - [sym_file_descriptor] = ACTIONS(1348), - [sym__concat] = ACTIONS(1348), - [sym__bare_dollar] = ACTIONS(1348), - [sym__brace_start] = ACTIONS(1348), - }, - [374] = { - [sym_word] = ACTIONS(1268), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_EQ] = ACTIONS(1268), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_SEMI_SEMI] = ACTIONS(1268), - [anon_sym_PIPE_AMP] = ACTIONS(1268), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1268), - [anon_sym_LT_AMP] = ACTIONS(1268), - [anon_sym_GT_AMP] = ACTIONS(1268), - [anon_sym_GT_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT_DASH] = ACTIONS(1268), - [anon_sym_LF] = ACTIONS(1268), - [anon_sym_LT_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), - [aux_sym_concatenation_token1] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_raw_string] = ACTIONS(1268), - [sym_ansi_c_string] = ACTIONS(1268), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), - [anon_sym_LT_LPAREN] = ACTIONS(1268), - [anon_sym_GT_LPAREN] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1268), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), - }, - [375] = { - [sym_word] = ACTIONS(1314), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_EQ] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_EQ] = ACTIONS(1314), - [anon_sym_DASH_EQ] = ACTIONS(1314), - [anon_sym_STAR_EQ] = ACTIONS(1314), - [anon_sym_SLASH_EQ] = ACTIONS(1314), - [anon_sym_PERCENT_EQ] = ACTIONS(1314), - [anon_sym_LT_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_GT_EQ] = ACTIONS(1314), - [anon_sym_AMP_EQ] = ACTIONS(1314), - [anon_sym_CARET_EQ] = ACTIONS(1314), - [anon_sym_PIPE_EQ] = ACTIONS(1314), - [anon_sym_EQ_EQ] = ACTIONS(1314), - [anon_sym_BANG_EQ] = ACTIONS(1314), - [anon_sym_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_EQ] = ACTIONS(1314), - [anon_sym_AMP_AMP] = ACTIONS(1314), - [anon_sym_PIPE_PIPE] = ACTIONS(1314), - [anon_sym_LT_LT] = ACTIONS(1314), - [anon_sym_GT_GT] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1314), - [anon_sym_PERCENT] = ACTIONS(1314), - [anon_sym_STAR_STAR] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_GT] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_SEMI_SEMI] = ACTIONS(1314), - [anon_sym_PIPE_AMP] = ACTIONS(1314), - [anon_sym_EQ_TILDE] = ACTIONS(1314), - [anon_sym_AMP_GT] = ACTIONS(1314), - [anon_sym_AMP_GT_GT] = ACTIONS(1314), - [anon_sym_LT_AMP] = ACTIONS(1314), - [anon_sym_GT_AMP] = ACTIONS(1314), - [anon_sym_GT_PIPE] = ACTIONS(1314), - [anon_sym_LT_LT_DASH] = ACTIONS(1314), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_LT_LT_LT] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_CARET] = ACTIONS(1314), - [anon_sym_QMARK] = ACTIONS(1314), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), - [aux_sym_concatenation_token1] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1314), - [sym__special_character] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_raw_string] = ACTIONS(1314), - [sym_ansi_c_string] = ACTIONS(1314), - [aux_sym_number_token1] = ACTIONS(1314), - [aux_sym_number_token2] = ACTIONS(1314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1314), - [anon_sym_BQUOTE] = ACTIONS(1314), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), - [anon_sym_LT_LPAREN] = ACTIONS(1314), - [anon_sym_GT_LPAREN] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1314), - [sym_file_descriptor] = ACTIONS(1316), - [sym__concat] = ACTIONS(1316), - [sym__bare_dollar] = ACTIONS(1316), - [sym__brace_start] = ACTIONS(1316), - }, - [376] = { - [sym_word] = ACTIONS(1318), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_EQ] = ACTIONS(1318), - [anon_sym_DASH_EQ] = ACTIONS(1318), - [anon_sym_STAR_EQ] = ACTIONS(1318), - [anon_sym_SLASH_EQ] = ACTIONS(1318), - [anon_sym_PERCENT_EQ] = ACTIONS(1318), - [anon_sym_LT_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_GT_EQ] = ACTIONS(1318), - [anon_sym_AMP_EQ] = ACTIONS(1318), - [anon_sym_CARET_EQ] = ACTIONS(1318), - [anon_sym_PIPE_EQ] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(1318), - [anon_sym_GT_GT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_STAR_STAR] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_SEMI_SEMI] = ACTIONS(1318), - [anon_sym_PIPE_AMP] = ACTIONS(1318), - [anon_sym_EQ_TILDE] = ACTIONS(1318), - [anon_sym_AMP_GT] = ACTIONS(1318), - [anon_sym_AMP_GT_GT] = ACTIONS(1318), - [anon_sym_LT_AMP] = ACTIONS(1318), - [anon_sym_GT_AMP] = ACTIONS(1318), - [anon_sym_GT_PIPE] = ACTIONS(1318), - [anon_sym_LT_LT_DASH] = ACTIONS(1318), - [anon_sym_LF] = ACTIONS(1318), - [anon_sym_LT_LT_LT] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_CARET] = ACTIONS(1318), - [anon_sym_QMARK] = ACTIONS(1318), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1318), - [aux_sym_concatenation_token1] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1318), - [sym__special_character] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_raw_string] = ACTIONS(1318), - [sym_ansi_c_string] = ACTIONS(1318), - [aux_sym_number_token1] = ACTIONS(1318), - [aux_sym_number_token2] = ACTIONS(1318), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1318), - [anon_sym_BQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1318), - [anon_sym_LT_LPAREN] = ACTIONS(1318), - [anon_sym_GT_LPAREN] = ACTIONS(1318), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1318), - [sym_file_descriptor] = ACTIONS(1320), - [sym__concat] = ACTIONS(1320), - [sym__bare_dollar] = ACTIONS(1320), - [sym__brace_start] = ACTIONS(1320), - }, - [377] = { - [aux_sym__literal_repeat1] = STATE(395), - [sym_word] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN_RPAREN] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(143), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_SEMI_SEMI] = ACTIONS(145), - [anon_sym_PIPE_AMP] = ACTIONS(145), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(145), - [anon_sym_LT_AMP] = ACTIONS(145), - [anon_sym_GT_AMP] = ACTIONS(145), - [anon_sym_GT_PIPE] = ACTIONS(145), - [anon_sym_LT_LT_DASH] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(145), - [anon_sym_LT_LT_LT] = ACTIONS(145), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(145), - [anon_sym_DOLLAR] = ACTIONS(145), - [sym__special_character] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_raw_string] = ACTIONS(145), - [sym_ansi_c_string] = ACTIONS(145), - [aux_sym_number_token1] = ACTIONS(145), - [aux_sym_number_token2] = ACTIONS(145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(145), - [anon_sym_BQUOTE] = ACTIONS(145), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(145), - [anon_sym_LT_LPAREN] = ACTIONS(145), - [anon_sym_GT_LPAREN] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(147), - [sym_file_descriptor] = ACTIONS(178), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(178), - }, - [378] = { - [sym_word] = ACTIONS(1346), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_EQ] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_EQ] = ACTIONS(1346), - [anon_sym_DASH_EQ] = ACTIONS(1346), - [anon_sym_STAR_EQ] = ACTIONS(1346), - [anon_sym_SLASH_EQ] = ACTIONS(1346), - [anon_sym_PERCENT_EQ] = ACTIONS(1346), - [anon_sym_LT_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_GT_EQ] = ACTIONS(1346), - [anon_sym_AMP_EQ] = ACTIONS(1346), - [anon_sym_CARET_EQ] = ACTIONS(1346), - [anon_sym_PIPE_EQ] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_AMP_AMP] = ACTIONS(1346), - [anon_sym_PIPE_PIPE] = ACTIONS(1346), - [anon_sym_LT_LT] = ACTIONS(1346), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_PERCENT] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_SEMI_SEMI] = ACTIONS(1346), - [anon_sym_PIPE_AMP] = ACTIONS(1346), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_AMP_GT] = ACTIONS(1346), - [anon_sym_AMP_GT_GT] = ACTIONS(1346), - [anon_sym_LT_AMP] = ACTIONS(1346), - [anon_sym_GT_AMP] = ACTIONS(1346), - [anon_sym_GT_PIPE] = ACTIONS(1346), - [anon_sym_LT_LT_DASH] = ACTIONS(1346), - [anon_sym_LF] = ACTIONS(1346), - [anon_sym_LT_LT_LT] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_QMARK] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1346), - [aux_sym_concatenation_token1] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1346), - [sym__special_character] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_raw_string] = ACTIONS(1346), - [sym_ansi_c_string] = ACTIONS(1346), - [aux_sym_number_token1] = ACTIONS(1346), - [aux_sym_number_token2] = ACTIONS(1346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), - [anon_sym_BQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1346), - [anon_sym_LT_LPAREN] = ACTIONS(1346), - [anon_sym_GT_LPAREN] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1346), - [sym_file_descriptor] = ACTIONS(1348), - [sym__concat] = ACTIONS(1348), - [sym__bare_dollar] = ACTIONS(1348), - [sym__brace_start] = ACTIONS(1348), - }, - [379] = { - [aux_sym__literal_repeat1] = STATE(395), - [sym_word] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN_RPAREN] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(143), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_SEMI_SEMI] = ACTIONS(145), - [anon_sym_PIPE_AMP] = ACTIONS(145), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(145), - [anon_sym_LT_AMP] = ACTIONS(145), - [anon_sym_GT_AMP] = ACTIONS(145), - [anon_sym_GT_PIPE] = ACTIONS(145), - [anon_sym_LT_LT_DASH] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(145), - [anon_sym_LT_LT_LT] = ACTIONS(145), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(145), - [anon_sym_DOLLAR] = ACTIONS(145), - [sym__special_character] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_raw_string] = ACTIONS(145), - [sym_ansi_c_string] = ACTIONS(145), - [aux_sym_number_token1] = ACTIONS(145), - [aux_sym_number_token2] = ACTIONS(145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(145), - [anon_sym_BQUOTE] = ACTIONS(145), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(145), - [anon_sym_LT_LPAREN] = ACTIONS(145), - [anon_sym_GT_LPAREN] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(147), - [sym_file_descriptor] = ACTIONS(178), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(178), - }, - [380] = { - [sym_word] = ACTIONS(1342), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(1342), - [anon_sym_DASH_EQ] = ACTIONS(1342), - [anon_sym_STAR_EQ] = ACTIONS(1342), - [anon_sym_SLASH_EQ] = ACTIONS(1342), - [anon_sym_PERCENT_EQ] = ACTIONS(1342), - [anon_sym_LT_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_GT_EQ] = ACTIONS(1342), - [anon_sym_AMP_EQ] = ACTIONS(1342), - [anon_sym_CARET_EQ] = ACTIONS(1342), - [anon_sym_PIPE_EQ] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_AMP_AMP] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1342), - [anon_sym_LT_LT] = ACTIONS(1342), - [anon_sym_GT_GT] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_SEMI_SEMI] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_AMP_GT] = ACTIONS(1342), - [anon_sym_AMP_GT_GT] = ACTIONS(1342), - [anon_sym_LT_AMP] = ACTIONS(1342), - [anon_sym_GT_AMP] = ACTIONS(1342), - [anon_sym_GT_PIPE] = ACTIONS(1342), - [anon_sym_LT_LT_DASH] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1342), - [anon_sym_LT_LT_LT] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1342), - [aux_sym_concatenation_token1] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [sym__special_character] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_raw_string] = ACTIONS(1342), - [sym_ansi_c_string] = ACTIONS(1342), - [aux_sym_number_token1] = ACTIONS(1342), - [aux_sym_number_token2] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1342), - [anon_sym_LT_LPAREN] = ACTIONS(1342), - [anon_sym_GT_LPAREN] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1342), - [sym_file_descriptor] = ACTIONS(1344), - [sym__concat] = ACTIONS(1344), - [sym__bare_dollar] = ACTIONS(1344), - [sym__brace_start] = ACTIONS(1344), - }, - [381] = { - [sym_word] = ACTIONS(1284), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_PERCENT_EQ] = ACTIONS(1284), - [anon_sym_LT_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_GT_EQ] = ACTIONS(1284), - [anon_sym_AMP_EQ] = ACTIONS(1284), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1284), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_EQ] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(1284), - [anon_sym_PIPE_PIPE] = ACTIONS(1284), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_STAR_STAR] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_SEMI_SEMI] = ACTIONS(1284), - [anon_sym_PIPE_AMP] = ACTIONS(1284), - [anon_sym_EQ_TILDE] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1284), - [anon_sym_LT_AMP] = ACTIONS(1284), - [anon_sym_GT_AMP] = ACTIONS(1284), - [anon_sym_GT_PIPE] = ACTIONS(1284), - [anon_sym_LT_LT_DASH] = ACTIONS(1284), - [anon_sym_LF] = ACTIONS(1284), - [anon_sym_LT_LT_LT] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1284), - [aux_sym_concatenation_token1] = ACTIONS(1284), - [anon_sym_DOLLAR] = ACTIONS(1284), - [sym__special_character] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_raw_string] = ACTIONS(1284), - [sym_ansi_c_string] = ACTIONS(1284), - [aux_sym_number_token1] = ACTIONS(1284), - [aux_sym_number_token2] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1284), - [anon_sym_LT_LPAREN] = ACTIONS(1284), - [anon_sym_GT_LPAREN] = ACTIONS(1284), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1284), - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [sym__bare_dollar] = ACTIONS(1286), - [sym__brace_start] = ACTIONS(1286), - }, - [382] = { - [sym_word] = ACTIONS(1330), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_EQ] = ACTIONS(1330), - [anon_sym_DASH_EQ] = ACTIONS(1330), - [anon_sym_STAR_EQ] = ACTIONS(1330), - [anon_sym_SLASH_EQ] = ACTIONS(1330), - [anon_sym_PERCENT_EQ] = ACTIONS(1330), - [anon_sym_LT_LT_EQ] = ACTIONS(1330), - [anon_sym_GT_GT_EQ] = ACTIONS(1330), - [anon_sym_AMP_EQ] = ACTIONS(1330), - [anon_sym_CARET_EQ] = ACTIONS(1330), - [anon_sym_PIPE_EQ] = ACTIONS(1330), - [anon_sym_EQ_EQ] = ACTIONS(1330), - [anon_sym_BANG_EQ] = ACTIONS(1330), - [anon_sym_LT_EQ] = ACTIONS(1330), - [anon_sym_GT_EQ] = ACTIONS(1330), - [anon_sym_AMP_AMP] = ACTIONS(1330), - [anon_sym_PIPE_PIPE] = ACTIONS(1330), - [anon_sym_LT_LT] = ACTIONS(1330), - [anon_sym_GT_GT] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_SLASH] = ACTIONS(1330), - [anon_sym_PERCENT] = ACTIONS(1330), - [anon_sym_STAR_STAR] = ACTIONS(1330), - [anon_sym_LT] = ACTIONS(1330), - [anon_sym_GT] = ACTIONS(1330), - [anon_sym_RPAREN] = ACTIONS(1330), - [anon_sym_PIPE] = ACTIONS(1330), - [anon_sym_SEMI_SEMI] = ACTIONS(1330), - [anon_sym_PIPE_AMP] = ACTIONS(1330), - [anon_sym_EQ_TILDE] = ACTIONS(1330), - [anon_sym_AMP_GT] = ACTIONS(1330), - [anon_sym_AMP_GT_GT] = ACTIONS(1330), - [anon_sym_LT_AMP] = ACTIONS(1330), - [anon_sym_GT_AMP] = ACTIONS(1330), - [anon_sym_GT_PIPE] = ACTIONS(1330), - [anon_sym_LT_LT_DASH] = ACTIONS(1330), - [anon_sym_LF] = ACTIONS(1330), - [anon_sym_LT_LT_LT] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_CARET] = ACTIONS(1330), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1330), - [aux_sym_concatenation_token1] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1330), - [sym__special_character] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_raw_string] = ACTIONS(1330), - [sym_ansi_c_string] = ACTIONS(1330), - [aux_sym_number_token1] = ACTIONS(1330), - [aux_sym_number_token2] = ACTIONS(1330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1330), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1330), - [anon_sym_BQUOTE] = ACTIONS(1330), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1330), - [anon_sym_LT_LPAREN] = ACTIONS(1330), - [anon_sym_GT_LPAREN] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1330), - [sym_file_descriptor] = ACTIONS(1332), - [sym__concat] = ACTIONS(1332), - [sym__bare_dollar] = ACTIONS(1332), - [sym__brace_start] = ACTIONS(1332), - }, - [383] = { - [sym_word] = ACTIONS(1322), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_EQ] = ACTIONS(1322), - [anon_sym_DASH_EQ] = ACTIONS(1322), - [anon_sym_STAR_EQ] = ACTIONS(1322), - [anon_sym_SLASH_EQ] = ACTIONS(1322), - [anon_sym_PERCENT_EQ] = ACTIONS(1322), - [anon_sym_LT_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_GT_EQ] = ACTIONS(1322), - [anon_sym_AMP_EQ] = ACTIONS(1322), - [anon_sym_CARET_EQ] = ACTIONS(1322), - [anon_sym_PIPE_EQ] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_STAR_STAR] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_SEMI_SEMI] = ACTIONS(1322), - [anon_sym_PIPE_AMP] = ACTIONS(1322), - [anon_sym_EQ_TILDE] = ACTIONS(1322), - [anon_sym_AMP_GT] = ACTIONS(1322), - [anon_sym_AMP_GT_GT] = ACTIONS(1322), - [anon_sym_LT_AMP] = ACTIONS(1322), - [anon_sym_GT_AMP] = ACTIONS(1322), - [anon_sym_GT_PIPE] = ACTIONS(1322), - [anon_sym_LT_LT_DASH] = ACTIONS(1322), - [anon_sym_LF] = ACTIONS(1322), - [anon_sym_LT_LT_LT] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_CARET] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1322), - [aux_sym_concatenation_token1] = ACTIONS(1322), - [anon_sym_DOLLAR] = ACTIONS(1322), - [sym__special_character] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_raw_string] = ACTIONS(1322), - [sym_ansi_c_string] = ACTIONS(1322), - [aux_sym_number_token1] = ACTIONS(1322), - [aux_sym_number_token2] = ACTIONS(1322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1322), - [anon_sym_BQUOTE] = ACTIONS(1322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1322), - [anon_sym_LT_LPAREN] = ACTIONS(1322), - [anon_sym_GT_LPAREN] = ACTIONS(1322), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1322), - [sym_file_descriptor] = ACTIONS(1324), - [sym__concat] = ACTIONS(1324), - [sym__bare_dollar] = ACTIONS(1324), - [sym__brace_start] = ACTIONS(1324), - }, - [384] = { - [sym_word] = ACTIONS(1272), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_EQ] = ACTIONS(1272), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_PIPE_PIPE] = ACTIONS(1272), - [anon_sym_LT_LT] = ACTIONS(1272), - [anon_sym_GT_GT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_STAR_STAR] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_SEMI_SEMI] = ACTIONS(1272), - [anon_sym_PIPE_AMP] = ACTIONS(1272), - [anon_sym_EQ_TILDE] = ACTIONS(1272), - [anon_sym_AMP_GT] = ACTIONS(1272), - [anon_sym_AMP_GT_GT] = ACTIONS(1272), - [anon_sym_LT_AMP] = ACTIONS(1272), - [anon_sym_GT_AMP] = ACTIONS(1272), - [anon_sym_GT_PIPE] = ACTIONS(1272), - [anon_sym_LT_LT_DASH] = ACTIONS(1272), - [anon_sym_LF] = ACTIONS(1272), - [anon_sym_LT_LT_LT] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1272), - [anon_sym_QMARK] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1272), - [aux_sym_concatenation_token1] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1272), - [sym__special_character] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_raw_string] = ACTIONS(1272), - [sym_ansi_c_string] = ACTIONS(1272), - [aux_sym_number_token1] = ACTIONS(1272), - [aux_sym_number_token2] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1272), - [anon_sym_LT_LPAREN] = ACTIONS(1272), - [anon_sym_GT_LPAREN] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1272), - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [sym__bare_dollar] = ACTIONS(1274), - [sym__brace_start] = ACTIONS(1274), - }, - [385] = { - [sym_word] = ACTIONS(1334), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_EQ] = ACTIONS(1334), - [anon_sym_DASH_EQ] = ACTIONS(1334), - [anon_sym_STAR_EQ] = ACTIONS(1334), - [anon_sym_SLASH_EQ] = ACTIONS(1334), - [anon_sym_PERCENT_EQ] = ACTIONS(1334), - [anon_sym_LT_LT_EQ] = ACTIONS(1334), - [anon_sym_GT_GT_EQ] = ACTIONS(1334), - [anon_sym_AMP_EQ] = ACTIONS(1334), - [anon_sym_CARET_EQ] = ACTIONS(1334), - [anon_sym_PIPE_EQ] = ACTIONS(1334), - [anon_sym_EQ_EQ] = ACTIONS(1334), - [anon_sym_BANG_EQ] = ACTIONS(1334), - [anon_sym_LT_EQ] = ACTIONS(1334), - [anon_sym_GT_EQ] = ACTIONS(1334), - [anon_sym_AMP_AMP] = ACTIONS(1334), - [anon_sym_PIPE_PIPE] = ACTIONS(1334), - [anon_sym_LT_LT] = ACTIONS(1334), - [anon_sym_GT_GT] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym_PERCENT] = ACTIONS(1334), - [anon_sym_STAR_STAR] = ACTIONS(1334), - [anon_sym_LT] = ACTIONS(1334), - [anon_sym_GT] = ACTIONS(1334), - [anon_sym_RPAREN] = ACTIONS(1334), - [anon_sym_PIPE] = ACTIONS(1334), - [anon_sym_SEMI_SEMI] = ACTIONS(1334), - [anon_sym_PIPE_AMP] = ACTIONS(1334), - [anon_sym_EQ_TILDE] = ACTIONS(1334), - [anon_sym_AMP_GT] = ACTIONS(1334), - [anon_sym_AMP_GT_GT] = ACTIONS(1334), - [anon_sym_LT_AMP] = ACTIONS(1334), - [anon_sym_GT_AMP] = ACTIONS(1334), - [anon_sym_GT_PIPE] = ACTIONS(1334), - [anon_sym_LT_LT_DASH] = ACTIONS(1334), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_LT_LT_LT] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_CARET] = ACTIONS(1334), - [anon_sym_QMARK] = ACTIONS(1334), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1334), - [aux_sym_concatenation_token1] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1334), - [sym__special_character] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_raw_string] = ACTIONS(1334), - [sym_ansi_c_string] = ACTIONS(1334), - [aux_sym_number_token1] = ACTIONS(1334), - [aux_sym_number_token2] = ACTIONS(1334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1334), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1334), - [anon_sym_BQUOTE] = ACTIONS(1334), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1334), - [anon_sym_LT_LPAREN] = ACTIONS(1334), - [anon_sym_GT_LPAREN] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1334), - [sym_file_descriptor] = ACTIONS(1336), - [sym__concat] = ACTIONS(1336), - [sym__bare_dollar] = ACTIONS(1336), - [sym__brace_start] = ACTIONS(1336), - }, - [386] = { - [sym_word] = ACTIONS(1338), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_EQ] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_EQ] = ACTIONS(1338), - [anon_sym_DASH_EQ] = ACTIONS(1338), - [anon_sym_STAR_EQ] = ACTIONS(1338), - [anon_sym_SLASH_EQ] = ACTIONS(1338), - [anon_sym_PERCENT_EQ] = ACTIONS(1338), - [anon_sym_LT_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_GT_EQ] = ACTIONS(1338), - [anon_sym_AMP_EQ] = ACTIONS(1338), - [anon_sym_CARET_EQ] = ACTIONS(1338), - [anon_sym_PIPE_EQ] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1338), - [anon_sym_LT_LT] = ACTIONS(1338), - [anon_sym_GT_GT] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_PERCENT] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_SEMI_SEMI] = ACTIONS(1338), - [anon_sym_PIPE_AMP] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_AMP_GT] = ACTIONS(1338), - [anon_sym_AMP_GT_GT] = ACTIONS(1338), - [anon_sym_LT_AMP] = ACTIONS(1338), - [anon_sym_GT_AMP] = ACTIONS(1338), - [anon_sym_GT_PIPE] = ACTIONS(1338), - [anon_sym_LT_LT_DASH] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_LT_LT_LT] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1338), - [aux_sym_concatenation_token1] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1338), - [sym__special_character] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_raw_string] = ACTIONS(1338), - [sym_ansi_c_string] = ACTIONS(1338), - [aux_sym_number_token1] = ACTIONS(1338), - [aux_sym_number_token2] = ACTIONS(1338), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1338), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1338), - [anon_sym_BQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1338), - [anon_sym_LT_LPAREN] = ACTIONS(1338), - [anon_sym_GT_LPAREN] = ACTIONS(1338), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1338), - [sym_file_descriptor] = ACTIONS(1340), - [sym__concat] = ACTIONS(1340), - [sym__bare_dollar] = ACTIONS(1340), - [sym__brace_start] = ACTIONS(1340), - }, - [387] = { - [sym_word] = ACTIONS(1258), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_SEMI_SEMI] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_EQ_TILDE] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1258), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1258), - [anon_sym_GT_AMP] = ACTIONS(1258), - [anon_sym_GT_PIPE] = ACTIONS(1258), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), - [anon_sym_LF] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), - [aux_sym_concatenation_token1] = ACTIONS(1258), - [anon_sym_DOLLAR] = ACTIONS(1258), - [sym__special_character] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_raw_string] = ACTIONS(1258), - [sym_ansi_c_string] = ACTIONS(1258), - [aux_sym_number_token1] = ACTIONS(1258), - [aux_sym_number_token2] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), - [anon_sym_LT_LPAREN] = ACTIONS(1258), - [anon_sym_GT_LPAREN] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1258), - [sym_file_descriptor] = ACTIONS(1263), - [sym__concat] = ACTIONS(1263), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), - }, - [388] = { - [sym_word] = ACTIONS(1268), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_EQ] = ACTIONS(1268), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_SEMI_SEMI] = ACTIONS(1268), - [anon_sym_PIPE_AMP] = ACTIONS(1268), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1268), - [anon_sym_LT_AMP] = ACTIONS(1268), - [anon_sym_GT_AMP] = ACTIONS(1268), - [anon_sym_GT_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT_DASH] = ACTIONS(1268), - [anon_sym_LF] = ACTIONS(1268), - [anon_sym_LT_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), - [aux_sym_concatenation_token1] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_raw_string] = ACTIONS(1268), - [sym_ansi_c_string] = ACTIONS(1268), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), - [anon_sym_LT_LPAREN] = ACTIONS(1268), - [anon_sym_GT_LPAREN] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1268), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), - }, - [389] = { - [sym_word] = ACTIONS(1276), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_EQ] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_EQ] = ACTIONS(1276), - [anon_sym_DASH_EQ] = ACTIONS(1276), - [anon_sym_STAR_EQ] = ACTIONS(1276), - [anon_sym_SLASH_EQ] = ACTIONS(1276), - [anon_sym_PERCENT_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_GT_EQ] = ACTIONS(1276), - [anon_sym_AMP_EQ] = ACTIONS(1276), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1276), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_EQ] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_STAR_STAR] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1276), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1276), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_GT_PIPE] = ACTIONS(1276), - [anon_sym_LT_LT_DASH] = ACTIONS(1276), - [anon_sym_LF] = ACTIONS(1276), - [anon_sym_LT_LT_LT] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1276), - [aux_sym_concatenation_token1] = ACTIONS(1276), - [anon_sym_DOLLAR] = ACTIONS(1276), - [sym__special_character] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_raw_string] = ACTIONS(1276), - [sym_ansi_c_string] = ACTIONS(1276), - [aux_sym_number_token1] = ACTIONS(1276), - [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1276), - [anon_sym_LT_LPAREN] = ACTIONS(1276), - [anon_sym_GT_LPAREN] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1276), - [sym_file_descriptor] = ACTIONS(1278), - [sym__concat] = ACTIONS(1278), - [sym__bare_dollar] = ACTIONS(1278), - [sym__brace_start] = ACTIONS(1278), - }, - [390] = { - [sym_word] = ACTIONS(1280), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_EQ] = ACTIONS(1280), - [anon_sym_DASH_EQ] = ACTIONS(1280), - [anon_sym_STAR_EQ] = ACTIONS(1280), - [anon_sym_SLASH_EQ] = ACTIONS(1280), - [anon_sym_PERCENT_EQ] = ACTIONS(1280), - [anon_sym_LT_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_GT_EQ] = ACTIONS(1280), - [anon_sym_AMP_EQ] = ACTIONS(1280), - [anon_sym_CARET_EQ] = ACTIONS(1280), - [anon_sym_PIPE_EQ] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1280), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_PERCENT] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_SEMI_SEMI] = ACTIONS(1280), - [anon_sym_PIPE_AMP] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_AMP_GT] = ACTIONS(1280), - [anon_sym_AMP_GT_GT] = ACTIONS(1280), - [anon_sym_LT_AMP] = ACTIONS(1280), - [anon_sym_GT_AMP] = ACTIONS(1280), - [anon_sym_GT_PIPE] = ACTIONS(1280), - [anon_sym_LT_LT_DASH] = ACTIONS(1280), - [anon_sym_LF] = ACTIONS(1280), - [anon_sym_LT_LT_LT] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1280), - [aux_sym_concatenation_token1] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [sym__special_character] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_raw_string] = ACTIONS(1280), - [sym_ansi_c_string] = ACTIONS(1280), - [aux_sym_number_token1] = ACTIONS(1280), - [aux_sym_number_token2] = ACTIONS(1280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1280), - [anon_sym_BQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1280), - [anon_sym_LT_LPAREN] = ACTIONS(1280), - [anon_sym_GT_LPAREN] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1280), - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [sym__bare_dollar] = ACTIONS(1282), - [sym__brace_start] = ACTIONS(1282), - }, - [391] = { - [sym_word] = ACTIONS(1294), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_EQ] = ACTIONS(1294), - [anon_sym_DASH_EQ] = ACTIONS(1294), - [anon_sym_STAR_EQ] = ACTIONS(1294), - [anon_sym_SLASH_EQ] = ACTIONS(1294), - [anon_sym_PERCENT_EQ] = ACTIONS(1294), - [anon_sym_LT_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP_EQ] = ACTIONS(1294), - [anon_sym_CARET_EQ] = ACTIONS(1294), - [anon_sym_PIPE_EQ] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1294), - [anon_sym_GT_AMP] = ACTIONS(1294), - [anon_sym_GT_PIPE] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [anon_sym_LF] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), - [aux_sym_concatenation_token1] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_ansi_c_string] = ACTIONS(1294), - [aux_sym_number_token1] = ACTIONS(1294), - [aux_sym_number_token2] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1294), - [sym_file_descriptor] = ACTIONS(1296), - [sym__concat] = ACTIONS(1296), - [sym__bare_dollar] = ACTIONS(1296), - [sym__brace_start] = ACTIONS(1296), - }, - [392] = { - [sym_word] = ACTIONS(1298), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_EQ] = ACTIONS(1298), - [anon_sym_DASH_EQ] = ACTIONS(1298), - [anon_sym_STAR_EQ] = ACTIONS(1298), - [anon_sym_SLASH_EQ] = ACTIONS(1298), - [anon_sym_PERCENT_EQ] = ACTIONS(1298), - [anon_sym_LT_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_GT_EQ] = ACTIONS(1298), - [anon_sym_AMP_EQ] = ACTIONS(1298), - [anon_sym_CARET_EQ] = ACTIONS(1298), - [anon_sym_PIPE_EQ] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_AMP_AMP] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1298), - [anon_sym_LT_LT] = ACTIONS(1298), - [anon_sym_GT_GT] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_SEMI_SEMI] = ACTIONS(1298), - [anon_sym_PIPE_AMP] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_AMP_GT] = ACTIONS(1298), - [anon_sym_AMP_GT_GT] = ACTIONS(1298), - [anon_sym_LT_AMP] = ACTIONS(1298), - [anon_sym_GT_AMP] = ACTIONS(1298), - [anon_sym_GT_PIPE] = ACTIONS(1298), - [anon_sym_LT_LT_DASH] = ACTIONS(1298), - [anon_sym_LF] = ACTIONS(1298), - [anon_sym_LT_LT_LT] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), - [aux_sym_concatenation_token1] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1298), - [sym__special_character] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_raw_string] = ACTIONS(1298), - [sym_ansi_c_string] = ACTIONS(1298), - [aux_sym_number_token1] = ACTIONS(1298), - [aux_sym_number_token2] = ACTIONS(1298), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1298), - [anon_sym_BQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1298), - [anon_sym_LT_LPAREN] = ACTIONS(1298), - [anon_sym_GT_LPAREN] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1298), - [sym_file_descriptor] = ACTIONS(1300), - [sym__concat] = ACTIONS(1300), - [sym__bare_dollar] = ACTIONS(1300), - [sym__brace_start] = ACTIONS(1300), - }, - [393] = { - [sym_word] = ACTIONS(1302), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_AMP_EQ] = ACTIONS(1302), - [anon_sym_CARET_EQ] = ACTIONS(1302), - [anon_sym_PIPE_EQ] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_SEMI_SEMI] = ACTIONS(1302), - [anon_sym_PIPE_AMP] = ACTIONS(1302), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_AMP_GT] = ACTIONS(1302), - [anon_sym_AMP_GT_GT] = ACTIONS(1302), - [anon_sym_LT_AMP] = ACTIONS(1302), - [anon_sym_GT_AMP] = ACTIONS(1302), - [anon_sym_GT_PIPE] = ACTIONS(1302), - [anon_sym_LT_LT_DASH] = ACTIONS(1302), - [anon_sym_LF] = ACTIONS(1302), - [anon_sym_LT_LT_LT] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1302), - [aux_sym_concatenation_token1] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [sym__special_character] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_raw_string] = ACTIONS(1302), - [sym_ansi_c_string] = ACTIONS(1302), - [aux_sym_number_token1] = ACTIONS(1302), - [aux_sym_number_token2] = ACTIONS(1302), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), - [anon_sym_BQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1302), - [anon_sym_LT_LPAREN] = ACTIONS(1302), - [anon_sym_GT_LPAREN] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1302), - [sym_file_descriptor] = ACTIONS(1304), - [sym__concat] = ACTIONS(1304), - [sym__bare_dollar] = ACTIONS(1304), - [sym__brace_start] = ACTIONS(1304), - }, - [394] = { - [sym_word] = ACTIONS(1310), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_EQ] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(1310), - [anon_sym_DASH_EQ] = ACTIONS(1310), - [anon_sym_STAR_EQ] = ACTIONS(1310), - [anon_sym_SLASH_EQ] = ACTIONS(1310), - [anon_sym_PERCENT_EQ] = ACTIONS(1310), - [anon_sym_LT_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_GT_EQ] = ACTIONS(1310), - [anon_sym_AMP_EQ] = ACTIONS(1310), - [anon_sym_CARET_EQ] = ACTIONS(1310), - [anon_sym_PIPE_EQ] = ACTIONS(1310), - [anon_sym_EQ_EQ] = ACTIONS(1310), - [anon_sym_BANG_EQ] = ACTIONS(1310), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_AMP_AMP] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1310), - [anon_sym_GT_GT] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1310), - [anon_sym_PERCENT] = ACTIONS(1310), - [anon_sym_STAR_STAR] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_RPAREN] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_SEMI_SEMI] = ACTIONS(1310), - [anon_sym_PIPE_AMP] = ACTIONS(1310), - [anon_sym_EQ_TILDE] = ACTIONS(1310), - [anon_sym_AMP_GT] = ACTIONS(1310), - [anon_sym_AMP_GT_GT] = ACTIONS(1310), - [anon_sym_LT_AMP] = ACTIONS(1310), - [anon_sym_GT_AMP] = ACTIONS(1310), - [anon_sym_GT_PIPE] = ACTIONS(1310), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_QMARK] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), - [aux_sym_concatenation_token1] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1310), - [sym__special_character] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_raw_string] = ACTIONS(1310), - [sym_ansi_c_string] = ACTIONS(1310), - [aux_sym_number_token1] = ACTIONS(1310), - [aux_sym_number_token2] = ACTIONS(1310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1310), - [anon_sym_BQUOTE] = ACTIONS(1310), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), - [anon_sym_LT_LPAREN] = ACTIONS(1310), - [anon_sym_GT_LPAREN] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1310), - [sym_file_descriptor] = ACTIONS(1312), - [sym__concat] = ACTIONS(1312), - [sym__bare_dollar] = ACTIONS(1312), - [sym__brace_start] = ACTIONS(1312), - }, - [395] = { - [aux_sym__literal_repeat1] = STATE(395), - [sym_word] = ACTIONS(1352), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1352), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1352), - [anon_sym_DASH_EQ] = ACTIONS(1352), - [anon_sym_STAR_EQ] = ACTIONS(1352), - [anon_sym_SLASH_EQ] = ACTIONS(1352), - [anon_sym_PERCENT_EQ] = ACTIONS(1352), - [anon_sym_LT_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_GT_EQ] = ACTIONS(1352), - [anon_sym_AMP_EQ] = ACTIONS(1352), - [anon_sym_CARET_EQ] = ACTIONS(1352), - [anon_sym_PIPE_EQ] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1352), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_STAR_STAR] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_SEMI_SEMI] = ACTIONS(1352), - [anon_sym_PIPE_AMP] = ACTIONS(1352), - [anon_sym_EQ_TILDE] = ACTIONS(1352), - [anon_sym_AMP_GT] = ACTIONS(1352), - [anon_sym_AMP_GT_GT] = ACTIONS(1352), - [anon_sym_LT_AMP] = ACTIONS(1352), - [anon_sym_GT_AMP] = ACTIONS(1352), - [anon_sym_GT_PIPE] = ACTIONS(1352), - [anon_sym_LT_LT_DASH] = ACTIONS(1352), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_LT_LT_LT] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1352), - [sym__special_character] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_raw_string] = ACTIONS(1352), - [sym_ansi_c_string] = ACTIONS(1352), - [aux_sym_number_token1] = ACTIONS(1352), - [aux_sym_number_token2] = ACTIONS(1352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1352), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1352), - [anon_sym_BQUOTE] = ACTIONS(1352), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1352), - [anon_sym_LT_LPAREN] = ACTIONS(1352), - [anon_sym_GT_LPAREN] = ACTIONS(1352), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1352), - [sym_file_descriptor] = ACTIONS(1357), - [sym__bare_dollar] = ACTIONS(1357), - [sym__brace_start] = ACTIONS(1357), - }, - [396] = { - [sym_word] = ACTIONS(1326), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_EQ] = ACTIONS(1326), - [anon_sym_DASH_EQ] = ACTIONS(1326), - [anon_sym_STAR_EQ] = ACTIONS(1326), - [anon_sym_SLASH_EQ] = ACTIONS(1326), - [anon_sym_PERCENT_EQ] = ACTIONS(1326), - [anon_sym_LT_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_GT_EQ] = ACTIONS(1326), - [anon_sym_AMP_EQ] = ACTIONS(1326), - [anon_sym_CARET_EQ] = ACTIONS(1326), - [anon_sym_PIPE_EQ] = ACTIONS(1326), - [anon_sym_EQ_EQ] = ACTIONS(1326), - [anon_sym_BANG_EQ] = ACTIONS(1326), - [anon_sym_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_EQ] = ACTIONS(1326), - [anon_sym_AMP_AMP] = ACTIONS(1326), - [anon_sym_PIPE_PIPE] = ACTIONS(1326), - [anon_sym_LT_LT] = ACTIONS(1326), - [anon_sym_GT_GT] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym_PERCENT] = ACTIONS(1326), - [anon_sym_STAR_STAR] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_GT] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_SEMI_SEMI] = ACTIONS(1326), - [anon_sym_PIPE_AMP] = ACTIONS(1326), - [anon_sym_EQ_TILDE] = ACTIONS(1326), - [anon_sym_AMP_GT] = ACTIONS(1326), - [anon_sym_AMP_GT_GT] = ACTIONS(1326), - [anon_sym_LT_AMP] = ACTIONS(1326), - [anon_sym_GT_AMP] = ACTIONS(1326), - [anon_sym_GT_PIPE] = ACTIONS(1326), - [anon_sym_LT_LT_DASH] = ACTIONS(1326), - [anon_sym_LF] = ACTIONS(1326), - [anon_sym_LT_LT_LT] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(1326), - [anon_sym_QMARK] = ACTIONS(1326), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1326), - [aux_sym_concatenation_token1] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1326), - [sym__special_character] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_raw_string] = ACTIONS(1326), - [sym_ansi_c_string] = ACTIONS(1326), - [aux_sym_number_token1] = ACTIONS(1326), - [aux_sym_number_token2] = ACTIONS(1326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1326), - [anon_sym_BQUOTE] = ACTIONS(1326), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1326), - [anon_sym_LT_LPAREN] = ACTIONS(1326), - [anon_sym_GT_LPAREN] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1326), - [sym_file_descriptor] = ACTIONS(1328), - [sym__concat] = ACTIONS(1328), - [sym__bare_dollar] = ACTIONS(1328), - [sym__brace_start] = ACTIONS(1328), - }, - [397] = { - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1242), - [anon_sym_GT_AMP] = ACTIONS(1242), - [anon_sym_GT_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), - [anon_sym_LF] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_raw_string] = ACTIONS(1242), - [sym_ansi_c_string] = ACTIONS(1242), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1242), - [sym_file_descriptor] = ACTIONS(1244), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), - }, - [398] = { - [aux_sym__literal_repeat1] = STATE(398), - [sym_word] = ACTIONS(1352), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1352), - [anon_sym_DASH_EQ] = ACTIONS(1352), - [anon_sym_STAR_EQ] = ACTIONS(1352), - [anon_sym_SLASH_EQ] = ACTIONS(1352), - [anon_sym_PERCENT_EQ] = ACTIONS(1352), - [anon_sym_LT_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_GT_EQ] = ACTIONS(1352), - [anon_sym_AMP_EQ] = ACTIONS(1352), - [anon_sym_CARET_EQ] = ACTIONS(1352), - [anon_sym_PIPE_EQ] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1352), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_STAR_STAR] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_SEMI_SEMI] = ACTIONS(1352), - [anon_sym_PIPE_AMP] = ACTIONS(1352), - [anon_sym_EQ_TILDE] = ACTIONS(1352), - [anon_sym_AMP_GT] = ACTIONS(1352), - [anon_sym_AMP_GT_GT] = ACTIONS(1352), - [anon_sym_LT_AMP] = ACTIONS(1352), - [anon_sym_GT_AMP] = ACTIONS(1352), - [anon_sym_GT_PIPE] = ACTIONS(1352), - [anon_sym_LT_LT_DASH] = ACTIONS(1352), - [anon_sym_LF] = ACTIONS(1352), - [anon_sym_LT_LT_LT] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1352), - [sym__special_character] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_raw_string] = ACTIONS(1352), - [sym_ansi_c_string] = ACTIONS(1352), - [aux_sym_number_token1] = ACTIONS(1352), - [aux_sym_number_token2] = ACTIONS(1352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1352), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1352), - [anon_sym_BQUOTE] = ACTIONS(1352), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1352), - [anon_sym_LT_LPAREN] = ACTIONS(1352), - [anon_sym_GT_LPAREN] = ACTIONS(1352), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1352), - [sym_file_descriptor] = ACTIONS(1357), - [sym__bare_dollar] = ACTIONS(1357), - [sym__brace_start] = ACTIONS(1357), - }, - [399] = { - [aux_sym__literal_repeat1] = STATE(398), - [sym_word] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(143), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_AMP_AMP] = ACTIONS(147), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_SEMI_SEMI] = ACTIONS(145), - [anon_sym_PIPE_AMP] = ACTIONS(145), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(145), - [anon_sym_LT_AMP] = ACTIONS(145), - [anon_sym_GT_AMP] = ACTIONS(145), - [anon_sym_GT_PIPE] = ACTIONS(145), - [anon_sym_LT_LT_DASH] = ACTIONS(145), - [anon_sym_LF] = ACTIONS(145), - [anon_sym_LT_LT_LT] = ACTIONS(145), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(145), - [anon_sym_DOLLAR] = ACTIONS(145), - [sym__special_character] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_raw_string] = ACTIONS(145), - [sym_ansi_c_string] = ACTIONS(145), - [aux_sym_number_token1] = ACTIONS(145), - [aux_sym_number_token2] = ACTIONS(145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(145), - [anon_sym_BQUOTE] = ACTIONS(145), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(145), - [anon_sym_LT_LPAREN] = ACTIONS(145), - [anon_sym_GT_LPAREN] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(147), - [sym_file_descriptor] = ACTIONS(178), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(178), - }, - [400] = { - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1225), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1225), - [anon_sym_GT_AMP] = ACTIONS(1225), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [401] = { - [aux_sym_concatenation_repeat1] = STATE(406), - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1234), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1364), - [anon_sym_GT_GT_EQ] = ACTIONS(1364), - [anon_sym_AMP_EQ] = ACTIONS(1364), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1364), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_PIPE_AMP] = ACTIONS(1234), - [anon_sym_RBRACK] = ACTIONS(1364), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1234), - [anon_sym_LT_AMP] = ACTIONS(1234), - [anon_sym_GT_AMP] = ACTIONS(1234), - [anon_sym_GT_PIPE] = ACTIONS(1234), - [anon_sym_LT_LT_DASH] = ACTIONS(1234), - [anon_sym_LT_LT_LT] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1234), - [aux_sym_concatenation_token1] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_raw_string] = ACTIONS(1234), - [sym_ansi_c_string] = ACTIONS(1234), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1234), - [anon_sym_LT_LPAREN] = ACTIONS(1234), - [anon_sym_GT_LPAREN] = ACTIONS(1234), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1366), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(609), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [402] = { - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1225), - [anon_sym_GT_AMP] = ACTIONS(1225), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [403] = { - [aux_sym_concatenation_repeat1] = STATE(406), - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1234), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1364), - [anon_sym_GT_GT_EQ] = ACTIONS(1364), - [anon_sym_AMP_EQ] = ACTIONS(1364), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1364), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_PIPE_AMP] = ACTIONS(1234), - [anon_sym_RBRACK] = ACTIONS(1364), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1234), - [anon_sym_LT_AMP] = ACTIONS(1234), - [anon_sym_GT_AMP] = ACTIONS(1234), - [anon_sym_GT_PIPE] = ACTIONS(1234), - [anon_sym_LT_LT_DASH] = ACTIONS(1234), - [anon_sym_LT_LT_LT] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1234), - [aux_sym_concatenation_token1] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_raw_string] = ACTIONS(1234), - [sym_ansi_c_string] = ACTIONS(1234), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1234), - [anon_sym_LT_LPAREN] = ACTIONS(1234), - [anon_sym_GT_LPAREN] = ACTIONS(1234), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1366), - [sym_file_descriptor] = ACTIONS(1234), - [sym__concat] = ACTIONS(609), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [404] = { - [aux_sym_concatenation_repeat1] = STATE(404), - [sym_word] = ACTIONS(1258), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_GT_EQ] = ACTIONS(1263), - [anon_sym_AMP_EQ] = ACTIONS(1263), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_AMP_AMP] = ACTIONS(1263), - [anon_sym_PIPE_PIPE] = ACTIONS(1263), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1263), - [anon_sym_RBRACK] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1258), - [anon_sym_AMP_GT_GT] = ACTIONS(1263), - [anon_sym_LT_AMP] = ACTIONS(1263), - [anon_sym_GT_AMP] = ACTIONS(1263), - [anon_sym_GT_PIPE] = ACTIONS(1263), - [anon_sym_LT_LT_DASH] = ACTIONS(1263), - [anon_sym_LT_LT_LT] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1263), - [aux_sym_concatenation_token1] = ACTIONS(1371), - [anon_sym_DOLLAR] = ACTIONS(1258), - [sym__special_character] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym_raw_string] = ACTIONS(1263), - [sym_ansi_c_string] = ACTIONS(1263), - [aux_sym_number_token1] = ACTIONS(1258), - [aux_sym_number_token2] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1263), - [anon_sym_LT_LPAREN] = ACTIONS(1263), - [anon_sym_GT_LPAREN] = ACTIONS(1263), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1263), - [sym_file_descriptor] = ACTIONS(1263), - [sym__concat] = ACTIONS(1371), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), - }, - [405] = { - [sym_word] = ACTIONS(1225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1229), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1229), - [anon_sym_AMP_GT] = ACTIONS(1225), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1225), - [anon_sym_GT_AMP] = ACTIONS(1225), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_DOLLAR] = ACTIONS(1225), - [sym__special_character] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1225), - [aux_sym_number_token2] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1225), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1234), - [sym__bare_dollar] = ACTIONS(1234), - [sym__brace_start] = ACTIONS(1234), - }, - [406] = { - [aux_sym_concatenation_repeat1] = STATE(404), - [sym_word] = ACTIONS(1252), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1254), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_EQ] = ACTIONS(1252), - [anon_sym_DASH_EQ] = ACTIONS(1252), - [anon_sym_STAR_EQ] = ACTIONS(1252), - [anon_sym_SLASH_EQ] = ACTIONS(1252), - [anon_sym_PERCENT_EQ] = ACTIONS(1252), - [anon_sym_LT_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP_EQ] = ACTIONS(1254), - [anon_sym_CARET_EQ] = ACTIONS(1252), - [anon_sym_PIPE_EQ] = ACTIONS(1254), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_PIPE_AMP] = ACTIONS(1254), - [anon_sym_RBRACK] = ACTIONS(1254), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1254), - [anon_sym_LT_AMP] = ACTIONS(1254), - [anon_sym_GT_AMP] = ACTIONS(1254), - [anon_sym_GT_PIPE] = ACTIONS(1254), - [anon_sym_LT_LT_DASH] = ACTIONS(1254), - [anon_sym_LT_LT_LT] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_QMARK] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1254), - [aux_sym_concatenation_token1] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_raw_string] = ACTIONS(1254), - [sym_ansi_c_string] = ACTIONS(1254), - [aux_sym_number_token1] = ACTIONS(1252), - [aux_sym_number_token2] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1254), - [anon_sym_LT_LPAREN] = ACTIONS(1254), - [anon_sym_GT_LPAREN] = ACTIONS(1254), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1254), - [sym_file_descriptor] = ACTIONS(1254), - [sym__concat] = ACTIONS(1374), - [sym__bare_dollar] = ACTIONS(1254), - [sym__brace_start] = ACTIONS(1254), - }, - [407] = { - [aux_sym_concatenation_repeat1] = STATE(408), - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_AMP_EQ] = ACTIONS(1244), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1244), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1244), - [anon_sym_RBRACK] = ACTIONS(1244), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1244), - [anon_sym_LT_AMP] = ACTIONS(1244), - [anon_sym_GT_AMP] = ACTIONS(1244), - [anon_sym_GT_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT_DASH] = ACTIONS(1244), - [anon_sym_LT_LT_LT] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1244), - [aux_sym_concatenation_token1] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_raw_string] = ACTIONS(1244), - [sym_ansi_c_string] = ACTIONS(1244), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1244), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1244), - [anon_sym_LT_LPAREN] = ACTIONS(1244), - [anon_sym_GT_LPAREN] = ACTIONS(1244), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1244), - [sym_file_descriptor] = ACTIONS(1244), - [sym__concat] = ACTIONS(609), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), - }, - [408] = { - [aux_sym_concatenation_repeat1] = STATE(404), - [sym_word] = ACTIONS(1246), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1248), - [anon_sym_GT_GT_EQ] = ACTIONS(1248), - [anon_sym_AMP_EQ] = ACTIONS(1248), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1248), - [anon_sym_EQ_EQ] = ACTIONS(1246), - [anon_sym_BANG_EQ] = ACTIONS(1246), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_STAR_STAR] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_PIPE_AMP] = ACTIONS(1248), - [anon_sym_RBRACK] = ACTIONS(1248), - [anon_sym_EQ_TILDE] = ACTIONS(1246), - [anon_sym_AMP_GT] = ACTIONS(1246), - [anon_sym_AMP_GT_GT] = ACTIONS(1248), - [anon_sym_LT_AMP] = ACTIONS(1248), - [anon_sym_GT_AMP] = ACTIONS(1248), - [anon_sym_GT_PIPE] = ACTIONS(1248), - [anon_sym_LT_LT_DASH] = ACTIONS(1248), - [anon_sym_LT_LT_LT] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1248), - [aux_sym_concatenation_token1] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(1246), - [sym__special_character] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_raw_string] = ACTIONS(1248), - [sym_ansi_c_string] = ACTIONS(1248), - [aux_sym_number_token1] = ACTIONS(1246), - [aux_sym_number_token2] = ACTIONS(1246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1248), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1246), - [anon_sym_BQUOTE] = ACTIONS(1246), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1248), - [anon_sym_LT_LPAREN] = ACTIONS(1248), - [anon_sym_GT_LPAREN] = ACTIONS(1248), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1248), - [sym_file_descriptor] = ACTIONS(1248), - [sym__concat] = ACTIONS(1376), - [sym__bare_dollar] = ACTIONS(1248), - [sym__brace_start] = ACTIONS(1248), - }, - [409] = { - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1242), - [anon_sym_GT_AMP] = ACTIONS(1242), - [anon_sym_GT_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), - [anon_sym_LF] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_raw_string] = ACTIONS(1242), - [sym_ansi_c_string] = ACTIONS(1242), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1242), - [sym_file_descriptor] = ACTIONS(1244), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), - }, - [410] = { - [sym_word] = ACTIONS(1294), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_EQ] = ACTIONS(1294), - [anon_sym_DASH_EQ] = ACTIONS(1294), - [anon_sym_STAR_EQ] = ACTIONS(1294), - [anon_sym_SLASH_EQ] = ACTIONS(1294), - [anon_sym_PERCENT_EQ] = ACTIONS(1294), - [anon_sym_LT_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_GT_EQ] = ACTIONS(1296), - [anon_sym_AMP_EQ] = ACTIONS(1296), - [anon_sym_CARET_EQ] = ACTIONS(1294), - [anon_sym_PIPE_EQ] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1296), - [anon_sym_RBRACK] = ACTIONS(1296), - [anon_sym_EQ_TILDE] = ACTIONS(1294), - [anon_sym_AMP_GT] = ACTIONS(1294), - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [anon_sym_GT_PIPE] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [aux_sym_concatenation_token1] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1294), - [sym__special_character] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [sym_ansi_c_string] = ACTIONS(1296), - [aux_sym_number_token1] = ACTIONS(1294), - [aux_sym_number_token2] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1296), - [sym_file_descriptor] = ACTIONS(1296), - [sym__concat] = ACTIONS(1296), - [sym__bare_dollar] = ACTIONS(1296), - [sym__brace_start] = ACTIONS(1296), - }, - [411] = { - [sym_word] = ACTIONS(1318), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1320), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_EQ] = ACTIONS(1318), - [anon_sym_DASH_EQ] = ACTIONS(1318), - [anon_sym_STAR_EQ] = ACTIONS(1318), - [anon_sym_SLASH_EQ] = ACTIONS(1318), - [anon_sym_PERCENT_EQ] = ACTIONS(1318), - [anon_sym_LT_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_GT_EQ] = ACTIONS(1320), - [anon_sym_AMP_EQ] = ACTIONS(1320), - [anon_sym_CARET_EQ] = ACTIONS(1318), - [anon_sym_PIPE_EQ] = ACTIONS(1320), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_PIPE_PIPE] = ACTIONS(1320), - [anon_sym_LT_LT] = ACTIONS(1318), - [anon_sym_GT_GT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_STAR_STAR] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_PIPE_AMP] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1320), - [anon_sym_EQ_TILDE] = ACTIONS(1318), - [anon_sym_AMP_GT] = ACTIONS(1318), - [anon_sym_AMP_GT_GT] = ACTIONS(1320), - [anon_sym_LT_AMP] = ACTIONS(1320), - [anon_sym_GT_AMP] = ACTIONS(1320), - [anon_sym_GT_PIPE] = ACTIONS(1320), - [anon_sym_LT_LT_DASH] = ACTIONS(1320), - [anon_sym_LT_LT_LT] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_CARET] = ACTIONS(1318), - [anon_sym_QMARK] = ACTIONS(1318), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1320), - [aux_sym_concatenation_token1] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(1318), - [sym__special_character] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_raw_string] = ACTIONS(1320), - [sym_ansi_c_string] = ACTIONS(1320), - [aux_sym_number_token1] = ACTIONS(1318), - [aux_sym_number_token2] = ACTIONS(1318), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1320), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1318), - [anon_sym_BQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1320), - [anon_sym_LT_LPAREN] = ACTIONS(1320), - [anon_sym_GT_LPAREN] = ACTIONS(1320), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1320), - [sym_file_descriptor] = ACTIONS(1320), - [sym__concat] = ACTIONS(1320), - [sym__bare_dollar] = ACTIONS(1320), - [sym__brace_start] = ACTIONS(1320), - }, - [412] = { - [sym_word] = ACTIONS(1268), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_EQ] = ACTIONS(1270), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1270), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_AMP] = ACTIONS(1270), - [anon_sym_PIPE_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_PIPE_AMP] = ACTIONS(1270), - [anon_sym_RBRACK] = ACTIONS(1270), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1270), - [anon_sym_LT_AMP] = ACTIONS(1270), - [anon_sym_GT_AMP] = ACTIONS(1270), - [anon_sym_GT_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT_DASH] = ACTIONS(1270), - [anon_sym_LT_LT_LT] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1270), - [aux_sym_concatenation_token1] = ACTIONS(1270), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_raw_string] = ACTIONS(1270), - [sym_ansi_c_string] = ACTIONS(1270), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1270), - [anon_sym_LT_LPAREN] = ACTIONS(1270), - [anon_sym_GT_LPAREN] = ACTIONS(1270), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1270), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), - }, - [413] = { - [sym_word] = ACTIONS(1298), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1300), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_EQ] = ACTIONS(1298), - [anon_sym_DASH_EQ] = ACTIONS(1298), - [anon_sym_STAR_EQ] = ACTIONS(1298), - [anon_sym_SLASH_EQ] = ACTIONS(1298), - [anon_sym_PERCENT_EQ] = ACTIONS(1298), - [anon_sym_LT_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_GT_EQ] = ACTIONS(1300), - [anon_sym_AMP_EQ] = ACTIONS(1300), - [anon_sym_CARET_EQ] = ACTIONS(1298), - [anon_sym_PIPE_EQ] = ACTIONS(1300), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1298), - [anon_sym_GT_GT] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1298), - [anon_sym_STAR_STAR] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_PIPE_AMP] = ACTIONS(1300), - [anon_sym_RBRACK] = ACTIONS(1300), - [anon_sym_EQ_TILDE] = ACTIONS(1298), - [anon_sym_AMP_GT] = ACTIONS(1298), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [anon_sym_GT_PIPE] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), - [aux_sym_concatenation_token1] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1298), - [sym__special_character] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [sym_ansi_c_string] = ACTIONS(1300), - [aux_sym_number_token1] = ACTIONS(1298), - [aux_sym_number_token2] = ACTIONS(1298), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1298), - [anon_sym_BQUOTE] = ACTIONS(1298), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1300), - [sym_file_descriptor] = ACTIONS(1300), - [sym__concat] = ACTIONS(1300), - [sym__bare_dollar] = ACTIONS(1300), - [sym__brace_start] = ACTIONS(1300), - }, - [414] = { - [sym_word] = ACTIONS(1302), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_GT_EQ] = ACTIONS(1304), - [anon_sym_AMP_EQ] = ACTIONS(1304), - [anon_sym_CARET_EQ] = ACTIONS(1302), - [anon_sym_PIPE_EQ] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1302), - [anon_sym_BANG_EQ] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_STAR_STAR] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_PIPE_AMP] = ACTIONS(1304), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1302), - [anon_sym_AMP_GT] = ACTIONS(1302), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_GT_PIPE] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1304), - [aux_sym_concatenation_token1] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1302), - [sym__special_character] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [sym_ansi_c_string] = ACTIONS(1304), - [aux_sym_number_token1] = ACTIONS(1302), - [aux_sym_number_token2] = ACTIONS(1302), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), - [anon_sym_BQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1304), - [sym_file_descriptor] = ACTIONS(1304), - [sym__concat] = ACTIONS(1304), - [sym__bare_dollar] = ACTIONS(1304), - [sym__brace_start] = ACTIONS(1304), - }, - [415] = { - [sym_word] = ACTIONS(1276), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_EQ] = ACTIONS(1276), - [anon_sym_DASH_EQ] = ACTIONS(1276), - [anon_sym_STAR_EQ] = ACTIONS(1276), - [anon_sym_SLASH_EQ] = ACTIONS(1276), - [anon_sym_PERCENT_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_EQ] = ACTIONS(1278), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1278), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_STAR_STAR] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1278), - [anon_sym_RBRACK] = ACTIONS(1278), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1278), - [anon_sym_LT_AMP] = ACTIONS(1278), - [anon_sym_GT_AMP] = ACTIONS(1278), - [anon_sym_GT_PIPE] = ACTIONS(1278), - [anon_sym_LT_LT_DASH] = ACTIONS(1278), - [anon_sym_LT_LT_LT] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1278), - [aux_sym_concatenation_token1] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1276), - [sym__special_character] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_raw_string] = ACTIONS(1278), - [sym_ansi_c_string] = ACTIONS(1278), - [aux_sym_number_token1] = ACTIONS(1276), - [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1278), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1278), - [anon_sym_LT_LPAREN] = ACTIONS(1278), - [anon_sym_GT_LPAREN] = ACTIONS(1278), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1278), - [sym_file_descriptor] = ACTIONS(1278), - [sym__concat] = ACTIONS(1278), - [sym__bare_dollar] = ACTIONS(1278), - [sym__brace_start] = ACTIONS(1278), - }, - [416] = { - [sym_word] = ACTIONS(1342), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1344), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(1342), - [anon_sym_DASH_EQ] = ACTIONS(1342), - [anon_sym_STAR_EQ] = ACTIONS(1342), - [anon_sym_SLASH_EQ] = ACTIONS(1342), - [anon_sym_PERCENT_EQ] = ACTIONS(1342), - [anon_sym_LT_LT_EQ] = ACTIONS(1344), - [anon_sym_GT_GT_EQ] = ACTIONS(1344), - [anon_sym_AMP_EQ] = ACTIONS(1344), - [anon_sym_CARET_EQ] = ACTIONS(1342), - [anon_sym_PIPE_EQ] = ACTIONS(1344), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1344), - [anon_sym_GT_EQ] = ACTIONS(1344), - [anon_sym_AMP_AMP] = ACTIONS(1344), - [anon_sym_PIPE_PIPE] = ACTIONS(1344), - [anon_sym_LT_LT] = ACTIONS(1342), - [anon_sym_GT_GT] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_STAR_STAR] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(1344), - [anon_sym_RBRACK] = ACTIONS(1344), - [anon_sym_EQ_TILDE] = ACTIONS(1342), - [anon_sym_AMP_GT] = ACTIONS(1342), - [anon_sym_AMP_GT_GT] = ACTIONS(1344), - [anon_sym_LT_AMP] = ACTIONS(1344), - [anon_sym_GT_AMP] = ACTIONS(1344), - [anon_sym_GT_PIPE] = ACTIONS(1344), - [anon_sym_LT_LT_DASH] = ACTIONS(1344), - [anon_sym_LT_LT_LT] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1344), - [aux_sym_concatenation_token1] = ACTIONS(1344), - [anon_sym_DOLLAR] = ACTIONS(1342), - [sym__special_character] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_raw_string] = ACTIONS(1344), - [sym_ansi_c_string] = ACTIONS(1344), - [aux_sym_number_token1] = ACTIONS(1342), - [aux_sym_number_token2] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1344), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1344), - [anon_sym_LT_LPAREN] = ACTIONS(1344), - [anon_sym_GT_LPAREN] = ACTIONS(1344), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1344), - [sym_file_descriptor] = ACTIONS(1344), - [sym__concat] = ACTIONS(1344), - [sym__bare_dollar] = ACTIONS(1344), - [sym__brace_start] = ACTIONS(1344), - }, - [417] = { - [sym_word] = ACTIONS(1310), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1312), - [anon_sym_EQ] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(1310), - [anon_sym_DASH_EQ] = ACTIONS(1310), - [anon_sym_STAR_EQ] = ACTIONS(1310), - [anon_sym_SLASH_EQ] = ACTIONS(1310), - [anon_sym_PERCENT_EQ] = ACTIONS(1310), - [anon_sym_LT_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_GT_EQ] = ACTIONS(1312), - [anon_sym_AMP_EQ] = ACTIONS(1312), - [anon_sym_CARET_EQ] = ACTIONS(1310), - [anon_sym_PIPE_EQ] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1310), - [anon_sym_BANG_EQ] = ACTIONS(1310), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [anon_sym_LT_LT] = ACTIONS(1310), - [anon_sym_GT_GT] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1310), - [anon_sym_PERCENT] = ACTIONS(1310), - [anon_sym_STAR_STAR] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_PIPE_AMP] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1310), - [anon_sym_AMP_GT] = ACTIONS(1310), - [anon_sym_AMP_GT_GT] = ACTIONS(1312), - [anon_sym_LT_AMP] = ACTIONS(1312), - [anon_sym_GT_AMP] = ACTIONS(1312), - [anon_sym_GT_PIPE] = ACTIONS(1312), - [anon_sym_LT_LT_DASH] = ACTIONS(1312), - [anon_sym_LT_LT_LT] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_QMARK] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), - [aux_sym_concatenation_token1] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1310), - [sym__special_character] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_raw_string] = ACTIONS(1312), - [sym_ansi_c_string] = ACTIONS(1312), - [aux_sym_number_token1] = ACTIONS(1310), - [aux_sym_number_token2] = ACTIONS(1310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1310), - [anon_sym_BQUOTE] = ACTIONS(1310), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1312), - [anon_sym_LT_LPAREN] = ACTIONS(1312), - [anon_sym_GT_LPAREN] = ACTIONS(1312), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1312), - [sym_file_descriptor] = ACTIONS(1312), - [sym__concat] = ACTIONS(1312), - [sym__bare_dollar] = ACTIONS(1312), - [sym__brace_start] = ACTIONS(1312), - }, - [418] = { - [sym_word] = ACTIONS(1322), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1324), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_EQ] = ACTIONS(1322), - [anon_sym_DASH_EQ] = ACTIONS(1322), - [anon_sym_STAR_EQ] = ACTIONS(1322), - [anon_sym_SLASH_EQ] = ACTIONS(1322), - [anon_sym_PERCENT_EQ] = ACTIONS(1322), - [anon_sym_LT_LT_EQ] = ACTIONS(1324), - [anon_sym_GT_GT_EQ] = ACTIONS(1324), - [anon_sym_AMP_EQ] = ACTIONS(1324), - [anon_sym_CARET_EQ] = ACTIONS(1322), - [anon_sym_PIPE_EQ] = ACTIONS(1324), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1324), - [anon_sym_GT_EQ] = ACTIONS(1324), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [anon_sym_PIPE_PIPE] = ACTIONS(1324), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_STAR_STAR] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_PIPE_AMP] = ACTIONS(1324), - [anon_sym_RBRACK] = ACTIONS(1324), - [anon_sym_EQ_TILDE] = ACTIONS(1322), - [anon_sym_AMP_GT] = ACTIONS(1322), - [anon_sym_AMP_GT_GT] = ACTIONS(1324), - [anon_sym_LT_AMP] = ACTIONS(1324), - [anon_sym_GT_AMP] = ACTIONS(1324), - [anon_sym_GT_PIPE] = ACTIONS(1324), - [anon_sym_LT_LT_DASH] = ACTIONS(1324), - [anon_sym_LT_LT_LT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_CARET] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1324), - [aux_sym_concatenation_token1] = ACTIONS(1324), - [anon_sym_DOLLAR] = ACTIONS(1322), - [sym__special_character] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_raw_string] = ACTIONS(1324), - [sym_ansi_c_string] = ACTIONS(1324), - [aux_sym_number_token1] = ACTIONS(1322), - [aux_sym_number_token2] = ACTIONS(1322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1324), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1322), - [anon_sym_BQUOTE] = ACTIONS(1322), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1324), - [anon_sym_LT_LPAREN] = ACTIONS(1324), - [anon_sym_GT_LPAREN] = ACTIONS(1324), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1324), - [sym_file_descriptor] = ACTIONS(1324), - [sym__concat] = ACTIONS(1324), - [sym__bare_dollar] = ACTIONS(1324), - [sym__brace_start] = ACTIONS(1324), - }, - [419] = { - [sym_word] = ACTIONS(1314), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_EQ] = ACTIONS(1314), - [anon_sym_DASH_EQ] = ACTIONS(1314), - [anon_sym_STAR_EQ] = ACTIONS(1314), - [anon_sym_SLASH_EQ] = ACTIONS(1314), - [anon_sym_PERCENT_EQ] = ACTIONS(1314), - [anon_sym_LT_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_GT_EQ] = ACTIONS(1316), - [anon_sym_AMP_EQ] = ACTIONS(1316), - [anon_sym_CARET_EQ] = ACTIONS(1314), - [anon_sym_PIPE_EQ] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1314), - [anon_sym_BANG_EQ] = ACTIONS(1314), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [anon_sym_PIPE_PIPE] = ACTIONS(1316), - [anon_sym_LT_LT] = ACTIONS(1314), - [anon_sym_GT_GT] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1314), - [anon_sym_PERCENT] = ACTIONS(1314), - [anon_sym_STAR_STAR] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_GT] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_PIPE_AMP] = ACTIONS(1316), - [anon_sym_RBRACK] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1314), - [anon_sym_AMP_GT] = ACTIONS(1314), - [anon_sym_AMP_GT_GT] = ACTIONS(1316), - [anon_sym_LT_AMP] = ACTIONS(1316), - [anon_sym_GT_AMP] = ACTIONS(1316), - [anon_sym_GT_PIPE] = ACTIONS(1316), - [anon_sym_LT_LT_DASH] = ACTIONS(1316), - [anon_sym_LT_LT_LT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_CARET] = ACTIONS(1314), - [anon_sym_QMARK] = ACTIONS(1314), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1316), - [aux_sym_concatenation_token1] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1314), - [sym__special_character] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_raw_string] = ACTIONS(1316), - [sym_ansi_c_string] = ACTIONS(1316), - [aux_sym_number_token1] = ACTIONS(1314), - [aux_sym_number_token2] = ACTIONS(1314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1314), - [anon_sym_BQUOTE] = ACTIONS(1314), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1316), - [anon_sym_LT_LPAREN] = ACTIONS(1316), - [anon_sym_GT_LPAREN] = ACTIONS(1316), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1316), - [sym_file_descriptor] = ACTIONS(1316), - [sym__concat] = ACTIONS(1316), - [sym__bare_dollar] = ACTIONS(1316), - [sym__brace_start] = ACTIONS(1316), - }, - [420] = { - [sym_word] = ACTIONS(1280), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1282), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_EQ] = ACTIONS(1280), - [anon_sym_DASH_EQ] = ACTIONS(1280), - [anon_sym_STAR_EQ] = ACTIONS(1280), - [anon_sym_SLASH_EQ] = ACTIONS(1280), - [anon_sym_PERCENT_EQ] = ACTIONS(1280), - [anon_sym_LT_LT_EQ] = ACTIONS(1282), - [anon_sym_GT_GT_EQ] = ACTIONS(1282), - [anon_sym_AMP_EQ] = ACTIONS(1282), - [anon_sym_CARET_EQ] = ACTIONS(1280), - [anon_sym_PIPE_EQ] = ACTIONS(1282), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1282), - [anon_sym_AMP_AMP] = ACTIONS(1282), - [anon_sym_PIPE_PIPE] = ACTIONS(1282), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_PERCENT] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_PIPE_AMP] = ACTIONS(1282), - [anon_sym_RBRACK] = ACTIONS(1282), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_AMP_GT] = ACTIONS(1280), - [anon_sym_AMP_GT_GT] = ACTIONS(1282), - [anon_sym_LT_AMP] = ACTIONS(1282), - [anon_sym_GT_AMP] = ACTIONS(1282), - [anon_sym_GT_PIPE] = ACTIONS(1282), - [anon_sym_LT_LT_DASH] = ACTIONS(1282), - [anon_sym_LT_LT_LT] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1282), - [aux_sym_concatenation_token1] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1280), - [sym__special_character] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_raw_string] = ACTIONS(1282), - [sym_ansi_c_string] = ACTIONS(1282), - [aux_sym_number_token1] = ACTIONS(1280), - [aux_sym_number_token2] = ACTIONS(1280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1280), - [anon_sym_BQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1282), - [anon_sym_LT_LPAREN] = ACTIONS(1282), - [anon_sym_GT_LPAREN] = ACTIONS(1282), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1282), - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [sym__bare_dollar] = ACTIONS(1282), - [sym__brace_start] = ACTIONS(1282), - }, - [421] = { - [sym_word] = ACTIONS(1330), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1332), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_EQ] = ACTIONS(1330), - [anon_sym_DASH_EQ] = ACTIONS(1330), - [anon_sym_STAR_EQ] = ACTIONS(1330), - [anon_sym_SLASH_EQ] = ACTIONS(1330), - [anon_sym_PERCENT_EQ] = ACTIONS(1330), - [anon_sym_LT_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_GT_EQ] = ACTIONS(1332), - [anon_sym_AMP_EQ] = ACTIONS(1332), - [anon_sym_CARET_EQ] = ACTIONS(1330), - [anon_sym_PIPE_EQ] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1330), - [anon_sym_BANG_EQ] = ACTIONS(1330), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_AMP_AMP] = ACTIONS(1332), - [anon_sym_PIPE_PIPE] = ACTIONS(1332), - [anon_sym_LT_LT] = ACTIONS(1330), - [anon_sym_GT_GT] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_SLASH] = ACTIONS(1330), - [anon_sym_PERCENT] = ACTIONS(1330), - [anon_sym_STAR_STAR] = ACTIONS(1330), - [anon_sym_LT] = ACTIONS(1330), - [anon_sym_GT] = ACTIONS(1330), - [anon_sym_PIPE] = ACTIONS(1330), - [anon_sym_PIPE_AMP] = ACTIONS(1332), - [anon_sym_RBRACK] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1330), - [anon_sym_AMP_GT] = ACTIONS(1330), - [anon_sym_AMP_GT_GT] = ACTIONS(1332), - [anon_sym_LT_AMP] = ACTIONS(1332), - [anon_sym_GT_AMP] = ACTIONS(1332), - [anon_sym_GT_PIPE] = ACTIONS(1332), - [anon_sym_LT_LT_DASH] = ACTIONS(1332), - [anon_sym_LT_LT_LT] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_CARET] = ACTIONS(1330), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1332), - [aux_sym_concatenation_token1] = ACTIONS(1332), - [anon_sym_DOLLAR] = ACTIONS(1330), - [sym__special_character] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_raw_string] = ACTIONS(1332), - [sym_ansi_c_string] = ACTIONS(1332), - [aux_sym_number_token1] = ACTIONS(1330), - [aux_sym_number_token2] = ACTIONS(1330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1332), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1330), - [anon_sym_BQUOTE] = ACTIONS(1330), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1332), - [anon_sym_LT_LPAREN] = ACTIONS(1332), - [anon_sym_GT_LPAREN] = ACTIONS(1332), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1332), - [sym_file_descriptor] = ACTIONS(1332), - [sym__concat] = ACTIONS(1332), - [sym__bare_dollar] = ACTIONS(1332), - [sym__brace_start] = ACTIONS(1332), - }, - [422] = { - [sym_word] = ACTIONS(1334), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1336), - [anon_sym_EQ] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_EQ] = ACTIONS(1334), - [anon_sym_DASH_EQ] = ACTIONS(1334), - [anon_sym_STAR_EQ] = ACTIONS(1334), - [anon_sym_SLASH_EQ] = ACTIONS(1334), - [anon_sym_PERCENT_EQ] = ACTIONS(1334), - [anon_sym_LT_LT_EQ] = ACTIONS(1336), - [anon_sym_GT_GT_EQ] = ACTIONS(1336), - [anon_sym_AMP_EQ] = ACTIONS(1336), - [anon_sym_CARET_EQ] = ACTIONS(1334), - [anon_sym_PIPE_EQ] = ACTIONS(1336), - [anon_sym_EQ_EQ] = ACTIONS(1334), - [anon_sym_BANG_EQ] = ACTIONS(1334), - [anon_sym_LT_EQ] = ACTIONS(1336), - [anon_sym_GT_EQ] = ACTIONS(1336), - [anon_sym_AMP_AMP] = ACTIONS(1336), - [anon_sym_PIPE_PIPE] = ACTIONS(1336), - [anon_sym_LT_LT] = ACTIONS(1334), - [anon_sym_GT_GT] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym_PERCENT] = ACTIONS(1334), - [anon_sym_STAR_STAR] = ACTIONS(1334), - [anon_sym_LT] = ACTIONS(1334), - [anon_sym_GT] = ACTIONS(1334), - [anon_sym_PIPE] = ACTIONS(1334), - [anon_sym_PIPE_AMP] = ACTIONS(1336), - [anon_sym_RBRACK] = ACTIONS(1336), - [anon_sym_EQ_TILDE] = ACTIONS(1334), - [anon_sym_AMP_GT] = ACTIONS(1334), - [anon_sym_AMP_GT_GT] = ACTIONS(1336), - [anon_sym_LT_AMP] = ACTIONS(1336), - [anon_sym_GT_AMP] = ACTIONS(1336), - [anon_sym_GT_PIPE] = ACTIONS(1336), - [anon_sym_LT_LT_DASH] = ACTIONS(1336), - [anon_sym_LT_LT_LT] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_CARET] = ACTIONS(1334), - [anon_sym_QMARK] = ACTIONS(1334), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1336), - [aux_sym_concatenation_token1] = ACTIONS(1336), - [anon_sym_DOLLAR] = ACTIONS(1334), - [sym__special_character] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_raw_string] = ACTIONS(1336), - [sym_ansi_c_string] = ACTIONS(1336), - [aux_sym_number_token1] = ACTIONS(1334), - [aux_sym_number_token2] = ACTIONS(1334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1336), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1334), - [anon_sym_BQUOTE] = ACTIONS(1334), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1336), - [anon_sym_LT_LPAREN] = ACTIONS(1336), - [anon_sym_GT_LPAREN] = ACTIONS(1336), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1336), - [sym_file_descriptor] = ACTIONS(1336), - [sym__concat] = ACTIONS(1336), - [sym__bare_dollar] = ACTIONS(1336), - [sym__brace_start] = ACTIONS(1336), - }, - [423] = { - [sym_word] = ACTIONS(1258), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_GT_EQ] = ACTIONS(1263), - [anon_sym_AMP_EQ] = ACTIONS(1263), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_AMP_AMP] = ACTIONS(1263), - [anon_sym_PIPE_PIPE] = ACTIONS(1263), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1263), - [anon_sym_RBRACK] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1258), - [anon_sym_AMP_GT] = ACTIONS(1258), - [anon_sym_AMP_GT_GT] = ACTIONS(1263), - [anon_sym_LT_AMP] = ACTIONS(1263), - [anon_sym_GT_AMP] = ACTIONS(1263), - [anon_sym_GT_PIPE] = ACTIONS(1263), - [anon_sym_LT_LT_DASH] = ACTIONS(1263), - [anon_sym_LT_LT_LT] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1263), - [aux_sym_concatenation_token1] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1258), - [sym__special_character] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym_raw_string] = ACTIONS(1263), - [sym_ansi_c_string] = ACTIONS(1263), - [aux_sym_number_token1] = ACTIONS(1258), - [aux_sym_number_token2] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1263), - [anon_sym_LT_LPAREN] = ACTIONS(1263), - [anon_sym_GT_LPAREN] = ACTIONS(1263), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1263), - [sym_file_descriptor] = ACTIONS(1263), - [sym__concat] = ACTIONS(1263), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), - }, - [424] = { - [sym_word] = ACTIONS(1338), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1340), - [anon_sym_EQ] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_EQ] = ACTIONS(1338), - [anon_sym_DASH_EQ] = ACTIONS(1338), - [anon_sym_STAR_EQ] = ACTIONS(1338), - [anon_sym_SLASH_EQ] = ACTIONS(1338), - [anon_sym_PERCENT_EQ] = ACTIONS(1338), - [anon_sym_LT_LT_EQ] = ACTIONS(1340), - [anon_sym_GT_GT_EQ] = ACTIONS(1340), - [anon_sym_AMP_EQ] = ACTIONS(1340), - [anon_sym_CARET_EQ] = ACTIONS(1338), - [anon_sym_PIPE_EQ] = ACTIONS(1340), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1340), - [anon_sym_GT_EQ] = ACTIONS(1340), - [anon_sym_AMP_AMP] = ACTIONS(1340), - [anon_sym_PIPE_PIPE] = ACTIONS(1340), - [anon_sym_LT_LT] = ACTIONS(1338), - [anon_sym_GT_GT] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_PERCENT] = ACTIONS(1338), - [anon_sym_STAR_STAR] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_PIPE_AMP] = ACTIONS(1340), - [anon_sym_RBRACK] = ACTIONS(1340), - [anon_sym_EQ_TILDE] = ACTIONS(1338), - [anon_sym_AMP_GT] = ACTIONS(1338), - [anon_sym_AMP_GT_GT] = ACTIONS(1340), - [anon_sym_LT_AMP] = ACTIONS(1340), - [anon_sym_GT_AMP] = ACTIONS(1340), - [anon_sym_GT_PIPE] = ACTIONS(1340), - [anon_sym_LT_LT_DASH] = ACTIONS(1340), - [anon_sym_LT_LT_LT] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1340), - [aux_sym_concatenation_token1] = ACTIONS(1340), - [anon_sym_DOLLAR] = ACTIONS(1338), - [sym__special_character] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_raw_string] = ACTIONS(1340), - [sym_ansi_c_string] = ACTIONS(1340), - [aux_sym_number_token1] = ACTIONS(1338), - [aux_sym_number_token2] = ACTIONS(1338), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1338), - [anon_sym_BQUOTE] = ACTIONS(1338), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1340), - [anon_sym_LT_LPAREN] = ACTIONS(1340), - [anon_sym_GT_LPAREN] = ACTIONS(1340), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1340), - [sym_file_descriptor] = ACTIONS(1340), - [sym__concat] = ACTIONS(1340), - [sym__bare_dollar] = ACTIONS(1340), - [sym__brace_start] = ACTIONS(1340), - }, - [425] = { - [sym_word] = ACTIONS(1268), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_EQ] = ACTIONS(1270), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1270), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_AMP] = ACTIONS(1270), - [anon_sym_PIPE_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_PIPE_AMP] = ACTIONS(1270), - [anon_sym_RBRACK] = ACTIONS(1270), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1270), - [anon_sym_LT_AMP] = ACTIONS(1270), - [anon_sym_GT_AMP] = ACTIONS(1270), - [anon_sym_GT_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT_DASH] = ACTIONS(1270), - [anon_sym_LT_LT_LT] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1270), - [aux_sym_concatenation_token1] = ACTIONS(1270), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_raw_string] = ACTIONS(1270), - [sym_ansi_c_string] = ACTIONS(1270), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1270), - [anon_sym_LT_LPAREN] = ACTIONS(1270), - [anon_sym_GT_LPAREN] = ACTIONS(1270), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1270), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), - }, - [426] = { - [sym_word] = ACTIONS(1272), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_EQ] = ACTIONS(1274), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1274), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1272), - [anon_sym_GT_GT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_STAR_STAR] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_PIPE_AMP] = ACTIONS(1274), - [anon_sym_RBRACK] = ACTIONS(1274), - [anon_sym_EQ_TILDE] = ACTIONS(1272), - [anon_sym_AMP_GT] = ACTIONS(1272), - [anon_sym_AMP_GT_GT] = ACTIONS(1274), - [anon_sym_LT_AMP] = ACTIONS(1274), - [anon_sym_GT_AMP] = ACTIONS(1274), - [anon_sym_GT_PIPE] = ACTIONS(1274), - [anon_sym_LT_LT_DASH] = ACTIONS(1274), - [anon_sym_LT_LT_LT] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1272), - [anon_sym_QMARK] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1274), - [aux_sym_concatenation_token1] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1272), - [sym__special_character] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [sym_ansi_c_string] = ACTIONS(1274), - [aux_sym_number_token1] = ACTIONS(1272), - [aux_sym_number_token2] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1274), - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [sym__bare_dollar] = ACTIONS(1274), - [sym__brace_start] = ACTIONS(1274), - }, - [427] = { - [sym_word] = ACTIONS(1326), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1328), - [anon_sym_EQ] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_EQ] = ACTIONS(1326), - [anon_sym_DASH_EQ] = ACTIONS(1326), - [anon_sym_STAR_EQ] = ACTIONS(1326), - [anon_sym_SLASH_EQ] = ACTIONS(1326), - [anon_sym_PERCENT_EQ] = ACTIONS(1326), - [anon_sym_LT_LT_EQ] = ACTIONS(1328), - [anon_sym_GT_GT_EQ] = ACTIONS(1328), - [anon_sym_AMP_EQ] = ACTIONS(1328), - [anon_sym_CARET_EQ] = ACTIONS(1326), - [anon_sym_PIPE_EQ] = ACTIONS(1328), - [anon_sym_EQ_EQ] = ACTIONS(1326), - [anon_sym_BANG_EQ] = ACTIONS(1326), - [anon_sym_LT_EQ] = ACTIONS(1328), - [anon_sym_GT_EQ] = ACTIONS(1328), - [anon_sym_AMP_AMP] = ACTIONS(1328), - [anon_sym_PIPE_PIPE] = ACTIONS(1328), - [anon_sym_LT_LT] = ACTIONS(1326), - [anon_sym_GT_GT] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym_PERCENT] = ACTIONS(1326), - [anon_sym_STAR_STAR] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_GT] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_PIPE_AMP] = ACTIONS(1328), - [anon_sym_RBRACK] = ACTIONS(1328), - [anon_sym_EQ_TILDE] = ACTIONS(1326), - [anon_sym_AMP_GT] = ACTIONS(1326), - [anon_sym_AMP_GT_GT] = ACTIONS(1328), - [anon_sym_LT_AMP] = ACTIONS(1328), - [anon_sym_GT_AMP] = ACTIONS(1328), - [anon_sym_GT_PIPE] = ACTIONS(1328), - [anon_sym_LT_LT_DASH] = ACTIONS(1328), - [anon_sym_LT_LT_LT] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(1326), - [anon_sym_QMARK] = ACTIONS(1326), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1328), - [aux_sym_concatenation_token1] = ACTIONS(1328), - [anon_sym_DOLLAR] = ACTIONS(1326), - [sym__special_character] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_raw_string] = ACTIONS(1328), - [sym_ansi_c_string] = ACTIONS(1328), - [aux_sym_number_token1] = ACTIONS(1326), - [aux_sym_number_token2] = ACTIONS(1326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1326), - [anon_sym_BQUOTE] = ACTIONS(1326), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1328), - [anon_sym_LT_LPAREN] = ACTIONS(1328), - [anon_sym_GT_LPAREN] = ACTIONS(1328), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1328), - [sym_file_descriptor] = ACTIONS(1328), - [sym__concat] = ACTIONS(1328), - [sym__bare_dollar] = ACTIONS(1328), - [sym__brace_start] = ACTIONS(1328), - }, - [428] = { - [sym_word] = ACTIONS(1346), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1348), - [anon_sym_EQ] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_EQ] = ACTIONS(1346), - [anon_sym_DASH_EQ] = ACTIONS(1346), - [anon_sym_STAR_EQ] = ACTIONS(1346), - [anon_sym_SLASH_EQ] = ACTIONS(1346), - [anon_sym_PERCENT_EQ] = ACTIONS(1346), - [anon_sym_LT_LT_EQ] = ACTIONS(1348), - [anon_sym_GT_GT_EQ] = ACTIONS(1348), - [anon_sym_AMP_EQ] = ACTIONS(1348), - [anon_sym_CARET_EQ] = ACTIONS(1346), - [anon_sym_PIPE_EQ] = ACTIONS(1348), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1348), - [anon_sym_GT_EQ] = ACTIONS(1348), - [anon_sym_AMP_AMP] = ACTIONS(1348), - [anon_sym_PIPE_PIPE] = ACTIONS(1348), - [anon_sym_LT_LT] = ACTIONS(1346), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_PERCENT] = ACTIONS(1346), - [anon_sym_STAR_STAR] = ACTIONS(1346), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_PIPE_AMP] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(1348), - [anon_sym_EQ_TILDE] = ACTIONS(1346), - [anon_sym_AMP_GT] = ACTIONS(1346), - [anon_sym_AMP_GT_GT] = ACTIONS(1348), - [anon_sym_LT_AMP] = ACTIONS(1348), - [anon_sym_GT_AMP] = ACTIONS(1348), - [anon_sym_GT_PIPE] = ACTIONS(1348), - [anon_sym_LT_LT_DASH] = ACTIONS(1348), - [anon_sym_LT_LT_LT] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_QMARK] = ACTIONS(1346), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1348), - [aux_sym_concatenation_token1] = ACTIONS(1348), - [anon_sym_DOLLAR] = ACTIONS(1346), - [sym__special_character] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_raw_string] = ACTIONS(1348), - [sym_ansi_c_string] = ACTIONS(1348), - [aux_sym_number_token1] = ACTIONS(1346), - [aux_sym_number_token2] = ACTIONS(1346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), - [anon_sym_BQUOTE] = ACTIONS(1346), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1348), - [anon_sym_LT_LPAREN] = ACTIONS(1348), - [anon_sym_GT_LPAREN] = ACTIONS(1348), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1348), - [sym_file_descriptor] = ACTIONS(1348), - [sym__concat] = ACTIONS(1348), - [sym__bare_dollar] = ACTIONS(1348), - [sym__brace_start] = ACTIONS(1348), - }, - [429] = { - [sym_word] = ACTIONS(1284), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_PERCENT_EQ] = ACTIONS(1284), - [anon_sym_LT_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_GT_EQ] = ACTIONS(1286), - [anon_sym_AMP_EQ] = ACTIONS(1286), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_AMP_AMP] = ACTIONS(1286), - [anon_sym_PIPE_PIPE] = ACTIONS(1286), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_STAR_STAR] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_PIPE_AMP] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1286), - [anon_sym_LT_AMP] = ACTIONS(1286), - [anon_sym_GT_AMP] = ACTIONS(1286), - [anon_sym_GT_PIPE] = ACTIONS(1286), - [anon_sym_LT_LT_DASH] = ACTIONS(1286), - [anon_sym_LT_LT_LT] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1286), - [aux_sym_concatenation_token1] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1284), - [sym__special_character] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_raw_string] = ACTIONS(1286), - [sym_ansi_c_string] = ACTIONS(1286), - [aux_sym_number_token1] = ACTIONS(1284), - [aux_sym_number_token2] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1286), - [anon_sym_LT_LPAREN] = ACTIONS(1286), - [anon_sym_GT_LPAREN] = ACTIONS(1286), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1286), - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [sym__bare_dollar] = ACTIONS(1286), - [sym__brace_start] = ACTIONS(1286), - }, - [430] = { - [sym_arithmetic_expansion] = STATE(2173), - [sym_brace_expression] = STATE(2173), - [sym_concatenation] = STATE(783), - [sym_string] = STATE(2173), - [sym_translated_string] = STATE(2173), - [sym_array] = STATE(783), - [sym_number] = STATE(2173), - [sym_simple_expansion] = STATE(2173), - [sym_expansion] = STATE(2173), - [sym_command_substitution] = STATE(2173), - [sym_process_substitution] = STATE(2173), - [aux_sym__literal_repeat1] = STATE(2262), - [aux_sym__expansion_body_repeat2] = STATE(783), - [sym_word] = ACTIONS(1378), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_RPAREN] = ACTIONS(1382), - [anon_sym_PIPE] = ACTIONS(1382), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_COLON] = ACTIONS(1398), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1380), - [anon_sym_DOLLAR] = ACTIONS(1400), - [sym__special_character] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_raw_string] = ACTIONS(1406), - [sym_ansi_c_string] = ACTIONS(1406), - [aux_sym_number_token1] = ACTIONS(1408), - [aux_sym_number_token2] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE3] = ACTIONS(1414), - [anon_sym_COLON_EQ] = ACTIONS(1388), - [anon_sym_COLON_DASH] = ACTIONS(1386), - [anon_sym_COLON_PLUS] = ACTIONS(1388), - [anon_sym_COLON_QMARK] = ACTIONS(1386), - [anon_sym_POUND_POUND] = ACTIONS(1416), - [anon_sym_PERCENT_PERCENT] = ACTIONS(1418), - [anon_sym_SLASH_SLASH] = ACTIONS(1390), - [anon_sym_SLASH_POUND] = ACTIONS(1390), - [anon_sym_SLASH_PERCENT] = ACTIONS(1390), - [anon_sym_COMMA_COMMA] = ACTIONS(1384), - [anon_sym_CARET_CARET] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(1420), - [anon_sym_COMMA2] = ACTIONS(1422), - [anon_sym_COMMA_COMMA2] = ACTIONS(1424), - [anon_sym_CARET2] = ACTIONS(1422), - [anon_sym_CARET_CARET2] = ACTIONS(1424), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1426), - [anon_sym_BQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1430), - [anon_sym_LT_LPAREN] = ACTIONS(1432), - [anon_sym_GT_LPAREN] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1434), - [sym__brace_start] = ACTIONS(1436), - }, - [431] = { - [aux_sym__literal_repeat1] = STATE(432), - [sym_word] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(178), - [anon_sym_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(147), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(602), - [anon_sym_PIPE_PIPE] = ACTIONS(602), - [anon_sym_LT_LT] = ACTIONS(147), - [anon_sym_GT_GT] = ACTIONS(147), - [anon_sym_PLUS] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(143), - [anon_sym_STAR_STAR] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_PIPE_AMP] = ACTIONS(178), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_EQ_TILDE] = ACTIONS(147), - [anon_sym_AMP_GT] = ACTIONS(145), - [anon_sym_AMP_GT_GT] = ACTIONS(178), - [anon_sym_LT_AMP] = ACTIONS(178), - [anon_sym_GT_AMP] = ACTIONS(178), - [anon_sym_GT_PIPE] = ACTIONS(178), - [anon_sym_LT_LT_DASH] = ACTIONS(178), - [anon_sym_LT_LT_LT] = ACTIONS(178), - [anon_sym_AMP] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(145), - [sym__special_character] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(178), - [sym_raw_string] = ACTIONS(178), - [sym_ansi_c_string] = ACTIONS(178), - [aux_sym_number_token1] = ACTIONS(145), - [aux_sym_number_token2] = ACTIONS(145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(145), - [anon_sym_BQUOTE] = ACTIONS(178), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(178), - [anon_sym_LT_LPAREN] = ACTIONS(178), - [anon_sym_GT_LPAREN] = ACTIONS(178), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(602), - [sym_file_descriptor] = ACTIONS(178), - [sym__bare_dollar] = ACTIONS(178), - [sym__brace_start] = ACTIONS(178), - }, - [432] = { - [aux_sym__literal_repeat1] = STATE(432), - [sym_word] = ACTIONS(1352), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1357), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1352), - [anon_sym_DASH_EQ] = ACTIONS(1352), - [anon_sym_STAR_EQ] = ACTIONS(1352), - [anon_sym_SLASH_EQ] = ACTIONS(1352), - [anon_sym_PERCENT_EQ] = ACTIONS(1352), - [anon_sym_LT_LT_EQ] = ACTIONS(1357), - [anon_sym_GT_GT_EQ] = ACTIONS(1357), - [anon_sym_AMP_EQ] = ACTIONS(1357), - [anon_sym_CARET_EQ] = ACTIONS(1352), - [anon_sym_PIPE_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1357), - [anon_sym_PIPE_PIPE] = ACTIONS(1357), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_STAR_STAR] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_PIPE_AMP] = ACTIONS(1357), - [anon_sym_RBRACK] = ACTIONS(1357), - [anon_sym_EQ_TILDE] = ACTIONS(1352), - [anon_sym_AMP_GT] = ACTIONS(1352), - [anon_sym_AMP_GT_GT] = ACTIONS(1357), - [anon_sym_LT_AMP] = ACTIONS(1357), - [anon_sym_GT_AMP] = ACTIONS(1357), - [anon_sym_GT_PIPE] = ACTIONS(1357), - [anon_sym_LT_LT_DASH] = ACTIONS(1357), - [anon_sym_LT_LT_LT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1357), - [anon_sym_DOLLAR] = ACTIONS(1352), - [sym__special_character] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1357), - [sym_raw_string] = ACTIONS(1357), - [sym_ansi_c_string] = ACTIONS(1357), - [aux_sym_number_token1] = ACTIONS(1352), - [aux_sym_number_token2] = ACTIONS(1352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1352), - [anon_sym_BQUOTE] = ACTIONS(1357), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1357), - [anon_sym_LT_LPAREN] = ACTIONS(1357), - [anon_sym_GT_LPAREN] = ACTIONS(1357), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1357), - [sym_file_descriptor] = ACTIONS(1357), - [sym__bare_dollar] = ACTIONS(1357), - [sym__brace_start] = ACTIONS(1357), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1244), 30, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(1242), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [71] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1366), 3, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_test_operator, - ACTIONS(1225), 7, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1229), 7, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - ACTIONS(1364), 7, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - ACTIONS(1227), 19, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_QMARK, - ACTIONS(1234), 20, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [150] = 36, - ACTIONS(63), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(296), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(302), 1, - aux_sym_unary_expression_token1, - ACTIONS(304), 1, - anon_sym_DOLLAR, - ACTIONS(306), 1, - sym__special_character, - ACTIONS(308), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - aux_sym_number_token1, - ACTIONS(314), 1, - aux_sym_number_token2, - ACTIONS(316), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(320), 1, - anon_sym_BQUOTE, - ACTIONS(322), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(326), 1, - sym_test_operator, - ACTIONS(330), 1, - sym_variable_name, - ACTIONS(332), 1, - sym__brace_start, - ACTIONS(607), 1, - anon_sym_BANG, - ACTIONS(1443), 1, - sym_word, - ACTIONS(1449), 1, - sym_file_descriptor, - STATE(431), 1, - aux_sym__literal_repeat1, - STATE(434), 1, - sym_concatenation, - STATE(611), 1, - sym_command_name, - STATE(2096), 1, - sym__expression, - STATE(2154), 1, - sym_variable_assignment, - STATE(3591), 1, - sym_command, - STATE(4307), 1, - sym_subscript, - ACTIONS(272), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(896), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3592), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(2073), 5, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - STATE(403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [282] = 36, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_unary_expression_token1, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(97), 1, - sym__special_character, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(103), 1, - aux_sym_number_token1, - ACTIONS(105), 1, - aux_sym_number_token2, - ACTIONS(107), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(109), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(111), 1, - anon_sym_BQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(117), 1, - sym_test_operator, - ACTIONS(121), 1, - sym_variable_name, - ACTIONS(123), 1, - sym__brace_start, - ACTIONS(222), 1, - anon_sym_BANG, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(1451), 1, - sym_word, - ACTIONS(1453), 1, - anon_sym_LPAREN, - STATE(377), 1, - aux_sym__literal_repeat1, - STATE(402), 1, - sym_concatenation, - STATE(481), 1, - sym_command_name, - STATE(1484), 1, - sym_variable_assignment, - STATE(1990), 1, - sym__expression, - STATE(3033), 1, - sym_command, - STATE(4373), 1, - sym_subscript, - ACTIONS(75), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(101), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(115), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(894), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3027), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(1623), 5, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - STATE(342), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [414] = 36, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(97), 1, - sym__special_character, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(103), 1, - aux_sym_number_token1, - ACTIONS(105), 1, - aux_sym_number_token2, - ACTIONS(107), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(109), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(111), 1, - anon_sym_BQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(121), 1, - sym_variable_name, - ACTIONS(123), 1, - sym__brace_start, - ACTIONS(131), 1, - aux_sym_unary_expression_token1, - ACTIONS(135), 1, - sym_test_operator, - ACTIONS(152), 1, - anon_sym_BANG, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(1453), 1, - anon_sym_LPAREN, - ACTIONS(1455), 1, - sym_word, - STATE(379), 1, - aux_sym__literal_repeat1, - STATE(400), 1, - sym_concatenation, - STATE(481), 1, - sym_command_name, - STATE(1484), 1, - sym_variable_assignment, - STATE(2060), 1, - sym__expression, - STATE(3033), 1, - sym_command, - STATE(4373), 1, - sym_subscript, - ACTIONS(75), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(115), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(133), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(894), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3027), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(1623), 5, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - STATE(346), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [546] = 36, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(121), 1, - sym_variable_name, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(194), 1, - anon_sym_DOLLAR, - ACTIONS(196), 1, - sym__special_character, - ACTIONS(198), 1, - anon_sym_DQUOTE, - ACTIONS(202), 1, - aux_sym_number_token1, - ACTIONS(204), 1, - aux_sym_number_token2, - ACTIONS(206), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(208), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(210), 1, - anon_sym_BQUOTE, - ACTIONS(212), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(216), 1, - sym_test_operator, - ACTIONS(218), 1, - sym__brace_start, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(1457), 1, - sym_word, - ACTIONS(1459), 1, - anon_sym_LPAREN, - STATE(399), 1, - aux_sym__literal_repeat1, - STATE(405), 1, - sym_concatenation, - STATE(481), 1, - sym_command_name, - STATE(1484), 1, - sym_variable_assignment, - STATE(2122), 1, - sym__expression, - STATE(3033), 1, - sym_command, - STATE(4373), 1, - sym_subscript, - ACTIONS(186), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(200), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(894), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3027), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(2117), 5, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - STATE(362), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [678] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_DOLLAR, - ACTIONS(1472), 1, - sym__special_character, - ACTIONS(1475), 1, - anon_sym_DQUOTE, - ACTIONS(1478), 1, - aux_sym_number_token1, - ACTIONS(1481), 1, - aux_sym_number_token2, - ACTIONS(1484), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1487), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1490), 1, - anon_sym_BQUOTE, - ACTIONS(1493), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1499), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1502), 1, - sym_test_operator, - ACTIONS(1505), 1, - sym_file_descriptor, - ACTIONS(1507), 1, - sym_variable_name, - ACTIONS(1510), 1, - sym__brace_start, - STATE(996), 1, - aux_sym__literal_repeat1, - STATE(4364), 1, - sym_subscript, - ACTIONS(1464), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1496), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1461), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(439), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(730), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1467), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [783] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 1, - anon_sym_DOLLAR, - ACTIONS(1521), 1, - sym__special_character, - ACTIONS(1523), 1, - anon_sym_DQUOTE, - ACTIONS(1525), 1, - aux_sym_number_token1, - ACTIONS(1527), 1, - aux_sym_number_token2, - ACTIONS(1529), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1531), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1533), 1, - anon_sym_BQUOTE, - ACTIONS(1535), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1539), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1541), 1, - sym_test_operator, - ACTIONS(1543), 1, - sym_file_descriptor, - ACTIONS(1545), 1, - sym_variable_name, - ACTIONS(1547), 1, - sym__brace_start, - STATE(996), 1, - aux_sym__literal_repeat1, - STATE(4364), 1, - sym_subscript, - ACTIONS(1515), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1537), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1513), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(439), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(730), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1517), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [888] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 1, - anon_sym_DOLLAR, - ACTIONS(1521), 1, - sym__special_character, - ACTIONS(1523), 1, - anon_sym_DQUOTE, - ACTIONS(1525), 1, - aux_sym_number_token1, - ACTIONS(1527), 1, - aux_sym_number_token2, - ACTIONS(1529), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1531), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1533), 1, - anon_sym_BQUOTE, - ACTIONS(1535), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1541), 1, - sym_test_operator, - ACTIONS(1545), 1, - sym_variable_name, - ACTIONS(1547), 1, - sym__brace_start, - ACTIONS(1551), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1553), 1, - sym_file_descriptor, - STATE(996), 1, - aux_sym__literal_repeat1, - STATE(4364), 1, - sym_subscript, - ACTIONS(1515), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1537), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1513), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(440), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(730), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1549), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [993] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1553), 1, - sym_file_descriptor, - ACTIONS(1559), 1, - anon_sym_DOLLAR, - ACTIONS(1561), 1, - sym__special_character, - ACTIONS(1563), 1, - anon_sym_DQUOTE, - ACTIONS(1565), 1, - aux_sym_number_token1, - ACTIONS(1567), 1, - aux_sym_number_token2, - ACTIONS(1569), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1571), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1573), 1, - anon_sym_BQUOTE, - ACTIONS(1575), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1579), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1581), 1, - sym_test_operator, - ACTIONS(1583), 1, - sym_variable_name, - ACTIONS(1585), 1, - sym__brace_start, - STATE(1193), 1, - aux_sym__literal_repeat1, - STATE(4359), 1, - sym_subscript, - ACTIONS(1557), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1577), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1555), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(445), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(772), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1549), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1097] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(442), 1, - anon_sym_DOLLAR, - ACTIONS(444), 1, - sym__special_character, - ACTIONS(450), 1, - aux_sym_number_token1, - ACTIONS(452), 1, - aux_sym_number_token2, - ACTIONS(456), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(470), 1, - sym__brace_start, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - ACTIONS(1597), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1599), 1, - anon_sym_BQUOTE, - ACTIONS(1601), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1605), 1, - sym_test_operator, - ACTIONS(1607), 1, - sym_file_descriptor, - ACTIONS(1609), 1, - sym__bare_dollar, - STATE(447), 1, - aux_sym_command_repeat2, - STATE(809), 1, - aux_sym__literal_repeat1, - STATE(974), 1, - sym_concatenation, - ACTIONS(1589), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1593), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1603), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1587), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(673), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1591), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1201] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1505), 1, - sym_file_descriptor, - ACTIONS(1617), 1, - anon_sym_DOLLAR, - ACTIONS(1620), 1, - sym__special_character, - ACTIONS(1623), 1, - anon_sym_DQUOTE, - ACTIONS(1626), 1, - aux_sym_number_token1, - ACTIONS(1629), 1, - aux_sym_number_token2, - ACTIONS(1632), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1635), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1638), 1, - anon_sym_BQUOTE, - ACTIONS(1641), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1647), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1650), 1, - sym_test_operator, - ACTIONS(1653), 1, - sym_variable_name, - ACTIONS(1656), 1, - sym__brace_start, - STATE(1193), 1, - aux_sym__literal_repeat1, - STATE(4359), 1, - sym_subscript, - ACTIONS(1614), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1644), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1611), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(444), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(772), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1467), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1305] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1543), 1, - sym_file_descriptor, - ACTIONS(1559), 1, - anon_sym_DOLLAR, - ACTIONS(1561), 1, - sym__special_character, - ACTIONS(1563), 1, - anon_sym_DQUOTE, - ACTIONS(1565), 1, - aux_sym_number_token1, - ACTIONS(1567), 1, - aux_sym_number_token2, - ACTIONS(1569), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1571), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1573), 1, - anon_sym_BQUOTE, - ACTIONS(1575), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1581), 1, - sym_test_operator, - ACTIONS(1583), 1, - sym_variable_name, - ACTIONS(1585), 1, - sym__brace_start, - ACTIONS(1659), 1, - aux_sym__simple_variable_name_token1, - STATE(1193), 1, - aux_sym__literal_repeat1, - STATE(4359), 1, - sym_subscript, - ACTIONS(1557), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1577), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1555), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(444), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(772), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1517), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1409] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(442), 1, - anon_sym_DOLLAR, - ACTIONS(444), 1, - sym__special_character, - ACTIONS(450), 1, - aux_sym_number_token1, - ACTIONS(452), 1, - aux_sym_number_token2, - ACTIONS(456), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(470), 1, - sym__brace_start, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - ACTIONS(1597), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1599), 1, - anon_sym_BQUOTE, - ACTIONS(1601), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1605), 1, - sym_test_operator, - ACTIONS(1609), 1, - sym__bare_dollar, - ACTIONS(1663), 1, - sym_file_descriptor, - STATE(449), 1, - aux_sym_command_repeat2, - STATE(809), 1, - aux_sym__literal_repeat1, - STATE(974), 1, - sym_concatenation, - ACTIONS(1589), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1593), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1603), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1587), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(673), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1661), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1513] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1676), 1, - anon_sym_DOLLAR, - ACTIONS(1679), 1, - sym__special_character, - ACTIONS(1682), 1, - anon_sym_DQUOTE, - ACTIONS(1685), 1, - aux_sym_number_token1, - ACTIONS(1688), 1, - aux_sym_number_token2, - ACTIONS(1691), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1694), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1697), 1, - anon_sym_BQUOTE, - ACTIONS(1700), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1706), 1, - sym_test_operator, - ACTIONS(1709), 1, - sym_file_descriptor, - ACTIONS(1711), 1, - sym__bare_dollar, - ACTIONS(1714), 1, - sym__brace_start, - STATE(447), 1, - aux_sym_command_repeat2, - STATE(809), 1, - aux_sym__literal_repeat1, - STATE(974), 1, - sym_concatenation, - ACTIONS(1668), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1673), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1703), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1665), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(673), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1671), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1617] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(442), 1, - anon_sym_DOLLAR, - ACTIONS(444), 1, - sym__special_character, - ACTIONS(450), 1, - aux_sym_number_token1, - ACTIONS(452), 1, - aux_sym_number_token2, - ACTIONS(456), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(470), 1, - sym__brace_start, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - ACTIONS(1597), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1599), 1, - anon_sym_BQUOTE, - ACTIONS(1601), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1605), 1, - sym_test_operator, - ACTIONS(1609), 1, - sym__bare_dollar, - ACTIONS(1719), 1, - sym_file_descriptor, - STATE(443), 1, - aux_sym_command_repeat2, - STATE(809), 1, - aux_sym__literal_repeat1, - STATE(974), 1, - sym_concatenation, - ACTIONS(1589), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1593), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1603), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1587), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(673), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1717), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1721] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(442), 1, - anon_sym_DOLLAR, - ACTIONS(444), 1, - sym__special_character, - ACTIONS(450), 1, - aux_sym_number_token1, - ACTIONS(452), 1, - aux_sym_number_token2, - ACTIONS(456), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(470), 1, - sym__brace_start, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - ACTIONS(1597), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1599), 1, - anon_sym_BQUOTE, - ACTIONS(1601), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1605), 1, - sym_test_operator, - ACTIONS(1609), 1, - sym__bare_dollar, - ACTIONS(1723), 1, - sym_file_descriptor, - STATE(447), 1, - aux_sym_command_repeat2, - STATE(809), 1, - aux_sym__literal_repeat1, - STATE(974), 1, - sym_concatenation, - ACTIONS(1589), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1593), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1603), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1587), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(673), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1721), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1825] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_DOLLAR, - ACTIONS(564), 1, - sym__special_character, - ACTIONS(570), 1, - aux_sym_number_token1, - ACTIONS(572), 1, - aux_sym_number_token2, - ACTIONS(576), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(1663), 1, - sym_file_descriptor, - ACTIONS(1731), 1, - anon_sym_DQUOTE, - ACTIONS(1733), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1735), 1, - anon_sym_BQUOTE, - ACTIONS(1737), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1741), 1, - sym_test_operator, - ACTIONS(1743), 1, - sym__bare_dollar, - STATE(451), 1, - aux_sym_command_repeat2, - STATE(924), 1, - aux_sym__literal_repeat1, - STATE(1183), 1, - sym_concatenation, - ACTIONS(1727), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1729), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1739), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1725), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(758), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1661), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1928] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_DOLLAR, - ACTIONS(564), 1, - sym__special_character, - ACTIONS(570), 1, - aux_sym_number_token1, - ACTIONS(572), 1, - aux_sym_number_token2, - ACTIONS(576), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(1723), 1, - sym_file_descriptor, - ACTIONS(1731), 1, - anon_sym_DQUOTE, - ACTIONS(1733), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1735), 1, - anon_sym_BQUOTE, - ACTIONS(1737), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1741), 1, - sym_test_operator, - ACTIONS(1743), 1, - sym__bare_dollar, - STATE(455), 1, - aux_sym_command_repeat2, - STATE(924), 1, - aux_sym__literal_repeat1, - STATE(1183), 1, - sym_concatenation, - ACTIONS(1727), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1729), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1739), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1725), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(758), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1721), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2031] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_DOLLAR, - ACTIONS(564), 1, - sym__special_character, - ACTIONS(570), 1, - aux_sym_number_token1, - ACTIONS(572), 1, - aux_sym_number_token2, - ACTIONS(576), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(1719), 1, - sym_file_descriptor, - ACTIONS(1731), 1, - anon_sym_DQUOTE, - ACTIONS(1733), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1735), 1, - anon_sym_BQUOTE, - ACTIONS(1737), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1741), 1, - sym_test_operator, - ACTIONS(1743), 1, - sym__bare_dollar, - STATE(453), 1, - aux_sym_command_repeat2, - STATE(924), 1, - aux_sym__literal_repeat1, - STATE(1183), 1, - sym_concatenation, - ACTIONS(1727), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1729), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1739), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1725), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(758), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1717), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2134] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_DOLLAR, - ACTIONS(564), 1, - sym__special_character, - ACTIONS(570), 1, - aux_sym_number_token1, - ACTIONS(572), 1, - aux_sym_number_token2, - ACTIONS(576), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(1607), 1, - sym_file_descriptor, - ACTIONS(1731), 1, - anon_sym_DQUOTE, - ACTIONS(1733), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1735), 1, - anon_sym_BQUOTE, - ACTIONS(1737), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1741), 1, - sym_test_operator, - ACTIONS(1743), 1, - sym__bare_dollar, - STATE(455), 1, - aux_sym_command_repeat2, - STATE(924), 1, - aux_sym__literal_repeat1, - STATE(1183), 1, - sym_concatenation, - ACTIONS(1727), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1729), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1739), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1725), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(758), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1591), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2237] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_DOLLAR, - ACTIONS(1754), 1, - sym__special_character, - ACTIONS(1757), 1, - anon_sym_DQUOTE, - ACTIONS(1760), 1, - aux_sym_number_token1, - ACTIONS(1763), 1, - aux_sym_number_token2, - ACTIONS(1766), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1769), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1772), 1, - anon_sym_BQUOTE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1781), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1784), 1, - sym_test_operator, - ACTIONS(1787), 1, - sym_variable_name, - ACTIONS(1790), 1, - sym__brace_start, - STATE(1336), 1, - aux_sym__literal_repeat1, - STATE(4386), 1, - sym_subscript, - ACTIONS(1505), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1748), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1778), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1745), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(454), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(999), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1467), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2340] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1709), 1, - sym_file_descriptor, - ACTIONS(1802), 1, - anon_sym_DOLLAR, - ACTIONS(1805), 1, - sym__special_character, - ACTIONS(1808), 1, - anon_sym_DQUOTE, - ACTIONS(1811), 1, - aux_sym_number_token1, - ACTIONS(1814), 1, - aux_sym_number_token2, - ACTIONS(1817), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1820), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1823), 1, - anon_sym_BQUOTE, - ACTIONS(1826), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1832), 1, - sym_test_operator, - ACTIONS(1835), 1, - sym__bare_dollar, - ACTIONS(1838), 1, - sym__brace_start, - STATE(455), 1, - aux_sym_command_repeat2, - STATE(924), 1, - aux_sym__literal_repeat1, - STATE(1183), 1, - sym_concatenation, - ACTIONS(1796), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1799), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1829), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1793), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(758), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1671), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2443] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1505), 1, - sym_file_descriptor, - ACTIONS(1847), 1, - anon_sym_DOLLAR, - ACTIONS(1850), 1, - sym__special_character, - ACTIONS(1853), 1, - anon_sym_DQUOTE, - ACTIONS(1856), 1, - aux_sym_number_token1, - ACTIONS(1859), 1, - aux_sym_number_token2, - ACTIONS(1862), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1865), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1868), 1, - anon_sym_BQUOTE, - ACTIONS(1871), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1877), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1880), 1, - sym_test_operator, - ACTIONS(1883), 1, - sym_variable_name, - ACTIONS(1886), 1, - sym__brace_start, - STATE(1289), 1, - aux_sym__literal_repeat1, - STATE(4394), 1, - sym_subscript, - ACTIONS(1844), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1874), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1841), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(456), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(895), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1467), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2546] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - anon_sym_DOLLAR, - ACTIONS(1895), 1, - sym__special_character, - ACTIONS(1897), 1, - anon_sym_DQUOTE, - ACTIONS(1899), 1, - aux_sym_number_token1, - ACTIONS(1901), 1, - aux_sym_number_token2, - ACTIONS(1903), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1905), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1907), 1, - anon_sym_BQUOTE, - ACTIONS(1909), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1913), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1915), 1, - sym_test_operator, - ACTIONS(1917), 1, - sym_variable_name, - ACTIONS(1919), 1, - sym__brace_start, - STATE(1336), 1, - aux_sym__literal_repeat1, - STATE(4386), 1, - sym_subscript, - ACTIONS(1553), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1891), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1911), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1889), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(459), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(999), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1549), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2649] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1553), 1, - sym_file_descriptor, - ACTIONS(1925), 1, - anon_sym_DOLLAR, - ACTIONS(1927), 1, - sym__special_character, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1935), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1939), 1, - anon_sym_BQUOTE, - ACTIONS(1941), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1945), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1947), 1, - sym_test_operator, - ACTIONS(1949), 1, - sym_variable_name, - ACTIONS(1951), 1, - sym__brace_start, - STATE(1289), 1, - aux_sym__literal_repeat1, - STATE(4394), 1, - sym_subscript, - ACTIONS(1923), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1921), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(460), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(895), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1549), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2752] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - anon_sym_DOLLAR, - ACTIONS(1895), 1, - sym__special_character, - ACTIONS(1897), 1, - anon_sym_DQUOTE, - ACTIONS(1899), 1, - aux_sym_number_token1, - ACTIONS(1901), 1, - aux_sym_number_token2, - ACTIONS(1903), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1905), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1907), 1, - anon_sym_BQUOTE, - ACTIONS(1909), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1915), 1, - sym_test_operator, - ACTIONS(1917), 1, - sym_variable_name, - ACTIONS(1919), 1, - sym__brace_start, - ACTIONS(1953), 1, - aux_sym__simple_variable_name_token1, - STATE(1336), 1, - aux_sym__literal_repeat1, - STATE(4386), 1, - sym_subscript, - ACTIONS(1543), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1891), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1911), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1889), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(454), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(999), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1517), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2855] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1543), 1, - sym_file_descriptor, - ACTIONS(1925), 1, - anon_sym_DOLLAR, - ACTIONS(1927), 1, - sym__special_character, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1935), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1939), 1, - anon_sym_BQUOTE, - ACTIONS(1941), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1947), 1, - sym_test_operator, - ACTIONS(1949), 1, - sym_variable_name, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(1955), 1, - aux_sym__simple_variable_name_token1, - STATE(1289), 1, - aux_sym__literal_repeat1, - STATE(4394), 1, - sym_subscript, - ACTIONS(1923), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1921), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(456), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(895), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1517), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2958] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - STATE(691), 1, - sym_string, - ACTIONS(1959), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1957), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [3029] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - STATE(691), 1, - sym_string, - ACTIONS(1959), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1957), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [3100] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1731), 1, - anon_sym_DQUOTE, - STATE(819), 1, - sym_string, - ACTIONS(1963), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1961), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [3170] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(773), 1, - sym__special_character, - ACTIONS(1719), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1981), 1, - sym_test_operator, - ACTIONS(1983), 1, - sym__bare_dollar, - STATE(472), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1969), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1965), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(774), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1717), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [3272] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1991), 1, - anon_sym_DOLLAR, - ACTIONS(1993), 1, - sym__special_character, - ACTIONS(1995), 1, - anon_sym_DQUOTE, - ACTIONS(1997), 1, - aux_sym_number_token1, - ACTIONS(1999), 1, - aux_sym_number_token2, - ACTIONS(2001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2005), 1, - anon_sym_BQUOTE, - ACTIONS(2007), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2011), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2013), 1, - sym_test_operator, - ACTIONS(2015), 1, - sym_file_descriptor, - ACTIONS(2017), 1, - sym__brace_start, - STATE(1103), 1, - aux_sym__literal_repeat1, - ACTIONS(1987), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2009), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(485), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1985), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(818), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1989), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [3370] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1991), 1, - anon_sym_DOLLAR, - ACTIONS(1993), 1, - sym__special_character, - ACTIONS(1995), 1, - anon_sym_DQUOTE, - ACTIONS(1997), 1, - aux_sym_number_token1, - ACTIONS(1999), 1, - aux_sym_number_token2, - ACTIONS(2001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2005), 1, - anon_sym_BQUOTE, - ACTIONS(2007), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2013), 1, - sym_test_operator, - ACTIONS(2017), 1, - sym__brace_start, - ACTIONS(2021), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2023), 1, - sym_file_descriptor, - STATE(1103), 1, - aux_sym__literal_repeat1, - ACTIONS(1987), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2009), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(465), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1985), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(818), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2019), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [3468] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(43), 1, - sym__special_character, - ACTIONS(49), 1, - aux_sym_number_token1, - ACTIONS(51), 1, - aux_sym_number_token2, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(2031), 1, - anon_sym_DQUOTE, - ACTIONS(2033), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2035), 1, - anon_sym_BQUOTE, - ACTIONS(2037), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2041), 1, - sym_test_operator, - ACTIONS(2043), 1, - sym__bare_dollar, - STATE(484), 1, - aux_sym_command_repeat2, - STATE(1059), 1, - aux_sym__literal_repeat1, - STATE(1358), 1, - sym_concatenation, - ACTIONS(1723), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2027), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2029), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2039), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2025), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(769), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1721), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [3570] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1140), 1, - aux_sym__literal_repeat1, - STATE(471), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2047), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - STATE(784), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [3638] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1140), 1, - aux_sym__literal_repeat1, - STATE(471), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2051), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - STATE(784), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [3706] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(43), 1, - sym__special_character, - ACTIONS(49), 1, - aux_sym_number_token1, - ACTIONS(51), 1, - aux_sym_number_token2, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(2031), 1, - anon_sym_DQUOTE, - ACTIONS(2033), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2035), 1, - anon_sym_BQUOTE, - ACTIONS(2037), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2041), 1, - sym_test_operator, - ACTIONS(2043), 1, - sym__bare_dollar, - STATE(474), 1, - aux_sym_command_repeat2, - STATE(1059), 1, - aux_sym__literal_repeat1, - STATE(1358), 1, - sym_concatenation, - ACTIONS(1719), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2027), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2029), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2039), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2025), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(769), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1717), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [3808] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2061), 1, - anon_sym_DOLLAR, - ACTIONS(2064), 1, - sym__special_character, - ACTIONS(2067), 1, - anon_sym_DQUOTE, - ACTIONS(2070), 1, - aux_sym_number_token1, - ACTIONS(2073), 1, - aux_sym_number_token2, - ACTIONS(2076), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2079), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2082), 1, - anon_sym_BQUOTE, - ACTIONS(2085), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2091), 1, - sym_test_operator, - ACTIONS(2096), 1, - sym__brace_start, - STATE(1140), 1, - aux_sym__literal_repeat1, - ACTIONS(2056), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2088), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2094), 2, - sym_file_descriptor, - sym_variable_name, - STATE(471), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2053), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(784), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2059), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [3904] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(773), 1, - sym__special_character, - ACTIONS(1607), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1981), 1, - sym_test_operator, - ACTIONS(1983), 1, - sym__bare_dollar, - STATE(476), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1969), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1965), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(774), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1591), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4006] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(43), 1, - sym__special_character, - ACTIONS(49), 1, - aux_sym_number_token1, - ACTIONS(51), 1, - aux_sym_number_token2, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(2031), 1, - anon_sym_DQUOTE, - ACTIONS(2033), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2035), 1, - anon_sym_BQUOTE, - ACTIONS(2037), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2041), 1, - sym_test_operator, - ACTIONS(2043), 1, - sym__bare_dollar, - STATE(467), 1, - aux_sym_command_repeat2, - STATE(1059), 1, - aux_sym__literal_repeat1, - STATE(1358), 1, - sym_concatenation, - ACTIONS(1663), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2027), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2029), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2039), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2025), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(769), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1661), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4108] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(43), 1, - sym__special_character, - ACTIONS(49), 1, - aux_sym_number_token1, - ACTIONS(51), 1, - aux_sym_number_token2, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(2031), 1, - anon_sym_DQUOTE, - ACTIONS(2033), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2035), 1, - anon_sym_BQUOTE, - ACTIONS(2037), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2041), 1, - sym_test_operator, - ACTIONS(2043), 1, - sym__bare_dollar, - STATE(484), 1, - aux_sym_command_repeat2, - STATE(1059), 1, - aux_sym__literal_repeat1, - STATE(1358), 1, - sym_concatenation, - ACTIONS(1607), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2027), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2029), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2039), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2025), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(769), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1591), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4210] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(773), 1, - sym__special_character, - ACTIONS(1723), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1981), 1, - sym_test_operator, - ACTIONS(1983), 1, - sym__bare_dollar, - STATE(476), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1969), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1965), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(774), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1721), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4312] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1709), 1, - sym_file_descriptor, - ACTIONS(2108), 1, - anon_sym_DOLLAR, - ACTIONS(2111), 1, - sym__special_character, - ACTIONS(2114), 1, - anon_sym_DQUOTE, - ACTIONS(2117), 1, - aux_sym_number_token1, - ACTIONS(2120), 1, - aux_sym_number_token2, - ACTIONS(2123), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2126), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2129), 1, - anon_sym_BQUOTE, - ACTIONS(2132), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2138), 1, - sym_test_operator, - ACTIONS(2141), 1, - sym__bare_dollar, - ACTIONS(2144), 1, - sym__brace_start, - STATE(476), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(2102), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2105), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2099), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(774), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1671), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4414] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1505), 1, - sym_file_descriptor, - ACTIONS(1847), 1, - anon_sym_DOLLAR, - ACTIONS(1853), 1, - anon_sym_DQUOTE, - ACTIONS(1856), 1, - aux_sym_number_token1, - ACTIONS(1859), 1, - aux_sym_number_token2, - ACTIONS(1862), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1865), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1868), 1, - anon_sym_BQUOTE, - ACTIONS(1871), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1886), 1, - sym__brace_start, - ACTIONS(2150), 1, - sym__special_character, - ACTIONS(2153), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2156), 1, - sym_test_operator, - ACTIONS(2159), 1, - sym_variable_name, - STATE(1289), 1, - aux_sym__literal_repeat1, - STATE(4387), 1, - sym_subscript, - ACTIONS(1844), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1874), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2147), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(477), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1174), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1467), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4516] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1731), 1, - anon_sym_DQUOTE, - STATE(819), 1, - sym_string, - ACTIONS(1963), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1961), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [4586] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1553), 1, - sym_file_descriptor, - ACTIONS(1925), 1, - anon_sym_DOLLAR, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1935), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1939), 1, - anon_sym_BQUOTE, - ACTIONS(1941), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(2164), 1, - sym__special_character, - ACTIONS(2166), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2168), 1, - sym_test_operator, - ACTIONS(2170), 1, - sym_variable_name, - STATE(1289), 1, - aux_sym__literal_repeat1, - STATE(4387), 1, - sym_subscript, - ACTIONS(1923), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2162), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(480), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1174), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1549), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4688] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1543), 1, - sym_file_descriptor, - ACTIONS(1925), 1, - anon_sym_DOLLAR, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1935), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1939), 1, - anon_sym_BQUOTE, - ACTIONS(1941), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(2164), 1, - sym__special_character, - ACTIONS(2168), 1, - sym_test_operator, - ACTIONS(2170), 1, - sym_variable_name, - ACTIONS(2172), 1, - aux_sym__simple_variable_name_token1, - STATE(1289), 1, - aux_sym__literal_repeat1, - STATE(4387), 1, - sym_subscript, - ACTIONS(1923), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2162), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(477), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1174), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1517), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4790] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(773), 1, - sym__special_character, - ACTIONS(1663), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1981), 1, - sym_test_operator, - ACTIONS(1983), 1, - sym__bare_dollar, - STATE(475), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1969), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1965), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(774), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1661), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4892] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1543), 1, - sym_file_descriptor, - ACTIONS(1925), 1, - anon_sym_DOLLAR, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1935), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1941), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(2164), 1, - sym__special_character, - ACTIONS(2168), 1, - sym_test_operator, - ACTIONS(2170), 1, - sym_variable_name, - ACTIONS(2172), 1, - aux_sym__simple_variable_name_token1, - STATE(1289), 1, - aux_sym__literal_repeat1, - STATE(4387), 1, - sym_subscript, - ACTIONS(1923), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2162), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(477), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1174), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1517), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [4992] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1553), 1, - sym_file_descriptor, - ACTIONS(1925), 1, - anon_sym_DOLLAR, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1935), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1941), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(2164), 1, - sym__special_character, - ACTIONS(2168), 1, - sym_test_operator, - ACTIONS(2170), 1, - sym_variable_name, - ACTIONS(2174), 1, - aux_sym__simple_variable_name_token1, - STATE(1289), 1, - aux_sym__literal_repeat1, - STATE(4387), 1, - sym_subscript, - ACTIONS(1923), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2162), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(482), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1174), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1549), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [5092] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2185), 1, - anon_sym_DOLLAR, - ACTIONS(2188), 1, - sym__special_character, - ACTIONS(2191), 1, - anon_sym_DQUOTE, - ACTIONS(2194), 1, - aux_sym_number_token1, - ACTIONS(2197), 1, - aux_sym_number_token2, - ACTIONS(2200), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2203), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2206), 1, - anon_sym_BQUOTE, - ACTIONS(2209), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2215), 1, - sym_test_operator, - ACTIONS(2218), 1, - sym__bare_dollar, - ACTIONS(2221), 1, - sym__brace_start, - STATE(484), 1, - aux_sym_command_repeat2, - STATE(1059), 1, - aux_sym__literal_repeat1, - STATE(1358), 1, - sym_concatenation, - ACTIONS(1709), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2179), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2182), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2212), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2176), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(769), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1671), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [5194] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2232), 1, - anon_sym_DOLLAR, - ACTIONS(2235), 1, - sym__special_character, - ACTIONS(2238), 1, - anon_sym_DQUOTE, - ACTIONS(2241), 1, - aux_sym_number_token1, - ACTIONS(2244), 1, - aux_sym_number_token2, - ACTIONS(2247), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2250), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2253), 1, - anon_sym_BQUOTE, - ACTIONS(2256), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2262), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2265), 1, - sym_test_operator, - ACTIONS(2268), 1, - sym_file_descriptor, - ACTIONS(2270), 1, - sym__brace_start, - STATE(1103), 1, - aux_sym__literal_repeat1, - ACTIONS(2227), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2259), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(485), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2224), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(818), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2230), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [5292] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2094), 1, - sym_file_descriptor, - ACTIONS(2279), 1, - anon_sym_DOLLAR, - ACTIONS(2282), 1, - sym__special_character, - ACTIONS(2285), 1, - anon_sym_DQUOTE, - ACTIONS(2288), 1, - aux_sym_number_token1, - ACTIONS(2291), 1, - aux_sym_number_token2, - ACTIONS(2294), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2300), 1, - anon_sym_BQUOTE, - ACTIONS(2303), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2309), 1, - sym_test_operator, - ACTIONS(2312), 1, - sym__brace_start, - STATE(1254), 1, - aux_sym__literal_repeat1, - ACTIONS(2276), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2306), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(486), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2273), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(913), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2059), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [5387] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym_DQUOTE, - STATE(1008), 1, - sym_string, - ACTIONS(2317), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2315), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [5456] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(362), 1, - sym__special_character, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1663), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(2323), 1, - sym_test_operator, - STATE(491), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2321), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2319), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(945), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1661), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [5557] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2331), 1, - anon_sym_DOLLAR, - ACTIONS(2334), 1, - sym__special_character, - ACTIONS(2337), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - aux_sym_number_token1, - ACTIONS(2343), 1, - aux_sym_number_token2, - ACTIONS(2346), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2352), 1, - anon_sym_BQUOTE, - ACTIONS(2355), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2361), 1, - sym_test_operator, - ACTIONS(2364), 1, - sym__brace_start, - STATE(1204), 1, - aux_sym__literal_repeat1, - ACTIONS(2094), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(2328), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2358), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(489), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2325), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(942), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2059), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [5652] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - STATE(926), 1, - sym_string, - ACTIONS(2369), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2367), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [5721] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(362), 1, - sym__special_character, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1723), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(2323), 1, - sym_test_operator, - STATE(503), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2321), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2319), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(945), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1721), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [5822] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(362), 1, - sym__special_character, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1607), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(2323), 1, - sym_test_operator, - STATE(503), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2321), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2319), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(945), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1591), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [5921] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 1, - anon_sym_DQUOTE, - STATE(802), 1, - sym_string, - ACTIONS(2373), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2371), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [5990] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(362), 1, - sym__special_character, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1719), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(2323), 1, - sym_test_operator, - STATE(505), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2321), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2319), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(945), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1717), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [6091] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(362), 1, - sym__special_character, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1663), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(2323), 1, - sym_test_operator, - STATE(506), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2321), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2319), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(945), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1661), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [6190] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 1, - sym_file_descriptor, - ACTIONS(2379), 1, - anon_sym_DOLLAR, - ACTIONS(2381), 1, - sym__special_character, - ACTIONS(2383), 1, - anon_sym_DQUOTE, - ACTIONS(2385), 1, - aux_sym_number_token1, - ACTIONS(2387), 1, - aux_sym_number_token2, - ACTIONS(2389), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2391), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2393), 1, - anon_sym_BQUOTE, - ACTIONS(2395), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2399), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2401), 1, - sym_test_operator, - ACTIONS(2403), 1, - sym__brace_start, - STATE(1226), 1, - aux_sym__literal_repeat1, - ACTIONS(2377), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2397), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(504), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2375), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(936), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1989), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [6287] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1204), 1, - aux_sym__literal_repeat1, - STATE(489), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2051), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - STATE(942), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [6354] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 1, - anon_sym_DQUOTE, - STATE(802), 1, - sym_string, - ACTIONS(2373), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2371), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [6423] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - STATE(926), 1, - sym_string, - ACTIONS(2369), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2367), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [6492] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1204), 1, - aux_sym__literal_repeat1, - STATE(489), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2047), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - STATE(942), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [6559] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2407), 1, - anon_sym_DQUOTE, - STATE(873), 1, - sym_string, - ACTIONS(2409), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2405), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [6628] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 1, - sym_file_descriptor, - ACTIONS(2379), 1, - anon_sym_DOLLAR, - ACTIONS(2381), 1, - sym__special_character, - ACTIONS(2383), 1, - anon_sym_DQUOTE, - ACTIONS(2385), 1, - aux_sym_number_token1, - ACTIONS(2387), 1, - aux_sym_number_token2, - ACTIONS(2389), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2391), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2393), 1, - anon_sym_BQUOTE, - ACTIONS(2395), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2401), 1, - sym_test_operator, - ACTIONS(2403), 1, - sym__brace_start, - ACTIONS(2411), 1, - aux_sym__simple_variable_name_token1, - STATE(1226), 1, - aux_sym__literal_repeat1, - ACTIONS(2377), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2397), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(496), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2375), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(936), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2019), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [6725] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1709), 1, - sym_file_descriptor, - ACTIONS(2108), 1, - anon_sym_DOLLAR, - ACTIONS(2114), 1, - anon_sym_DQUOTE, - ACTIONS(2117), 1, - aux_sym_number_token1, - ACTIONS(2120), 1, - aux_sym_number_token2, - ACTIONS(2123), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2126), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2129), 1, - anon_sym_BQUOTE, - ACTIONS(2132), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2141), 1, - sym__bare_dollar, - ACTIONS(2144), 1, - sym__brace_start, - ACTIONS(2419), 1, - sym__special_character, - ACTIONS(2422), 1, - sym_test_operator, - STATE(503), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(2102), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2416), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2413), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(945), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1671), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [6826] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2268), 1, - sym_file_descriptor, - ACTIONS(2431), 1, - anon_sym_DOLLAR, - ACTIONS(2434), 1, - sym__special_character, - ACTIONS(2437), 1, - anon_sym_DQUOTE, - ACTIONS(2440), 1, - aux_sym_number_token1, - ACTIONS(2443), 1, - aux_sym_number_token2, - ACTIONS(2446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2449), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2452), 1, - anon_sym_BQUOTE, - ACTIONS(2455), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2461), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2464), 1, - sym_test_operator, - ACTIONS(2467), 1, - sym__brace_start, - STATE(1226), 1, - aux_sym__literal_repeat1, - ACTIONS(2428), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2458), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(504), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2425), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(936), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2230), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [6923] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(362), 1, - sym__special_character, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1607), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(2323), 1, - sym_test_operator, - STATE(503), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2321), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2319), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(945), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1591), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [7024] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(362), 1, - sym__special_character, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1723), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(2323), 1, - sym_test_operator, - STATE(503), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2321), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2319), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(945), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1721), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [7123] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - sym_file_descriptor, - ACTIONS(2474), 1, - anon_sym_DOLLAR, - ACTIONS(2476), 1, - sym__special_character, - ACTIONS(2478), 1, - anon_sym_DQUOTE, - ACTIONS(2480), 1, - aux_sym_number_token1, - ACTIONS(2482), 1, - aux_sym_number_token2, - ACTIONS(2484), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2486), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2488), 1, - anon_sym_BQUOTE, - ACTIONS(2490), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2494), 1, - sym_test_operator, - ACTIONS(2496), 1, - sym__brace_start, - STATE(1254), 1, - aux_sym__literal_repeat1, - ACTIONS(2472), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2492), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(486), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2470), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(913), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [7218] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2407), 1, - anon_sym_DQUOTE, - STATE(873), 1, - sym_string, - ACTIONS(2409), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2405), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [7287] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(362), 1, - sym__special_character, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1719), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(2323), 1, - sym_test_operator, - STATE(492), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2321), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2319), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(945), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1717), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [7386] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2047), 1, - sym_file_descriptor, - ACTIONS(2474), 1, - anon_sym_DOLLAR, - ACTIONS(2476), 1, - sym__special_character, - ACTIONS(2478), 1, - anon_sym_DQUOTE, - ACTIONS(2480), 1, - aux_sym_number_token1, - ACTIONS(2482), 1, - aux_sym_number_token2, - ACTIONS(2484), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2486), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2488), 1, - anon_sym_BQUOTE, - ACTIONS(2490), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2494), 1, - sym_test_operator, - ACTIONS(2496), 1, - sym__brace_start, - STATE(1254), 1, - aux_sym__literal_repeat1, - ACTIONS(2472), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2492), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(486), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2470), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(913), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [7481] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym_DQUOTE, - STATE(1008), 1, - sym_string, - ACTIONS(2317), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2315), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [7550] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 1, - sym_file_descriptor, - ACTIONS(2502), 1, - anon_sym_DOLLAR, - ACTIONS(2504), 1, - sym__special_character, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2516), 1, - anon_sym_BQUOTE, - ACTIONS(2518), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2522), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2524), 1, - sym_test_operator, - ACTIONS(2526), 1, - sym__brace_start, - STATE(1390), 1, - aux_sym__literal_repeat1, - ACTIONS(2500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(514), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2498), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1135), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1989), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [7646] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_DOLLAR, - ACTIONS(2534), 1, - sym__special_character, - ACTIONS(2536), 1, - anon_sym_DQUOTE, - ACTIONS(2538), 1, - aux_sym_number_token1, - ACTIONS(2540), 1, - aux_sym_number_token2, - ACTIONS(2542), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2544), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2546), 1, - anon_sym_BQUOTE, - ACTIONS(2548), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2552), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2554), 1, - sym_test_operator, - ACTIONS(2556), 1, - sym__brace_start, - STATE(1421), 1, - aux_sym__literal_repeat1, - ACTIONS(2023), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2530), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2550), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(527), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2528), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1091), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2019), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [7742] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2268), 1, - sym_file_descriptor, - ACTIONS(2564), 1, - anon_sym_DOLLAR, - ACTIONS(2567), 1, - sym__special_character, - ACTIONS(2570), 1, - anon_sym_DQUOTE, - ACTIONS(2573), 1, - aux_sym_number_token1, - ACTIONS(2576), 1, - aux_sym_number_token2, - ACTIONS(2579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2582), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2585), 1, - anon_sym_BQUOTE, - ACTIONS(2588), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2594), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2597), 1, - sym_test_operator, - ACTIONS(2600), 1, - sym__brace_start, - STATE(1390), 1, - aux_sym__literal_repeat1, - ACTIONS(2561), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2591), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(514), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2558), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1135), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2230), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [7838] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1563), 1, - anon_sym_DQUOTE, - STATE(960), 1, - sym_string, - ACTIONS(2605), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2603), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [7906] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2609), 1, - anon_sym_DQUOTE, - STATE(1190), 1, - sym_string, - ACTIONS(2611), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2607), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [7974] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1438), 1, - aux_sym__literal_repeat1, - STATE(518), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2051), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - STATE(1129), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [8040] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2619), 1, - anon_sym_DOLLAR, - ACTIONS(2622), 1, - sym__special_character, - ACTIONS(2625), 1, - anon_sym_DQUOTE, - ACTIONS(2628), 1, - aux_sym_number_token1, - ACTIONS(2631), 1, - aux_sym_number_token2, - ACTIONS(2634), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2637), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2640), 1, - anon_sym_BQUOTE, - ACTIONS(2643), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2649), 1, - sym_test_operator, - ACTIONS(2652), 1, - sym__brace_start, - STATE(1438), 1, - aux_sym__literal_repeat1, - ACTIONS(2616), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2646), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(518), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2094), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(2613), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1129), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2059), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [8134] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1443), 1, - aux_sym__literal_repeat1, - STATE(523), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2051), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - STATE(1122), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [8200] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1438), 1, - aux_sym__literal_repeat1, - STATE(518), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2047), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - STATE(1129), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [8266] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2094), 1, - sym_file_descriptor, - ACTIONS(2661), 1, - anon_sym_DOLLAR, - ACTIONS(2664), 1, - sym__special_character, - ACTIONS(2667), 1, - anon_sym_DQUOTE, - ACTIONS(2670), 1, - aux_sym_number_token1, - ACTIONS(2673), 1, - aux_sym_number_token2, - ACTIONS(2676), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2679), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2682), 1, - anon_sym_BQUOTE, - ACTIONS(2685), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2691), 1, - sym_test_operator, - ACTIONS(2694), 1, - sym__brace_start, - STATE(1386), 1, - aux_sym__literal_repeat1, - ACTIONS(2658), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2688), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(521), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2655), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1179), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2059), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [8360] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - sym_file_descriptor, - ACTIONS(2701), 1, - anon_sym_DOLLAR, - ACTIONS(2703), 1, - sym__special_character, - ACTIONS(2705), 1, - anon_sym_DQUOTE, - ACTIONS(2707), 1, - aux_sym_number_token1, - ACTIONS(2709), 1, - aux_sym_number_token2, - ACTIONS(2711), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2713), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2715), 1, - anon_sym_BQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2721), 1, - sym_test_operator, - ACTIONS(2723), 1, - sym__brace_start, - STATE(1386), 1, - aux_sym__literal_repeat1, - ACTIONS(2699), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2719), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(521), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2697), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1179), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [8454] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2731), 1, - anon_sym_DOLLAR, - ACTIONS(2734), 1, - sym__special_character, - ACTIONS(2737), 1, - anon_sym_DQUOTE, - ACTIONS(2740), 1, - aux_sym_number_token1, - ACTIONS(2743), 1, - aux_sym_number_token2, - ACTIONS(2746), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2749), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2752), 1, - anon_sym_BQUOTE, - ACTIONS(2755), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2761), 1, - sym_test_operator, - ACTIONS(2764), 1, - sym__brace_start, - STATE(1443), 1, - aux_sym__literal_repeat1, - ACTIONS(2094), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(2728), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2758), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(523), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2725), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1122), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2059), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [8548] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1995), 1, - anon_sym_DQUOTE, - STATE(878), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2769), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2767), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [8616] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1995), 1, - anon_sym_DQUOTE, - STATE(878), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2769), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2767), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [8684] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2047), 1, - sym_file_descriptor, - ACTIONS(2701), 1, - anon_sym_DOLLAR, - ACTIONS(2703), 1, - sym__special_character, - ACTIONS(2705), 1, - anon_sym_DQUOTE, - ACTIONS(2707), 1, - aux_sym_number_token1, - ACTIONS(2709), 1, - aux_sym_number_token2, - ACTIONS(2711), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2713), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2715), 1, - anon_sym_BQUOTE, - ACTIONS(2717), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2721), 1, - sym_test_operator, - ACTIONS(2723), 1, - sym__brace_start, - STATE(1386), 1, - aux_sym__literal_repeat1, - ACTIONS(2699), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2719), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(521), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2697), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1179), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [8778] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_DOLLAR, - ACTIONS(2534), 1, - sym__special_character, - ACTIONS(2536), 1, - anon_sym_DQUOTE, - ACTIONS(2538), 1, - aux_sym_number_token1, - ACTIONS(2540), 1, - aux_sym_number_token2, - ACTIONS(2542), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2544), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2546), 1, - anon_sym_BQUOTE, - ACTIONS(2548), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2554), 1, - sym_test_operator, - ACTIONS(2556), 1, - sym__brace_start, - ACTIONS(2771), 1, - aux_sym__simple_variable_name_token1, - STATE(1421), 1, - aux_sym__literal_repeat1, - ACTIONS(2015), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2530), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2550), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(536), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2528), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1091), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1989), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [8874] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2609), 1, - anon_sym_DQUOTE, - STATE(1190), 1, - sym_string, - ACTIONS(2611), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2607), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [8942] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - STATE(926), 1, - sym_string, - ACTIONS(2369), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2367), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [9010] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1443), 1, - aux_sym__literal_repeat1, - STATE(523), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2047), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - STATE(1122), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [9076] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2478), 1, - anon_sym_DQUOTE, - STATE(1047), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2775), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2773), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [9144] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 1, - sym_file_descriptor, - ACTIONS(2502), 1, - anon_sym_DOLLAR, - ACTIONS(2504), 1, - sym__special_character, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2516), 1, - anon_sym_BQUOTE, - ACTIONS(2518), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2524), 1, - sym_test_operator, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(2777), 1, - aux_sym__simple_variable_name_token1, - STATE(1390), 1, - aux_sym__literal_repeat1, - ACTIONS(2500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(512), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2498), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1135), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2019), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [9240] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - STATE(926), 1, - sym_string, - ACTIONS(2369), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2367), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [9308] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2478), 1, - anon_sym_DQUOTE, - STATE(1047), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2775), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2773), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [9376] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1563), 1, - anon_sym_DQUOTE, - STATE(960), 1, - sym_string, - ACTIONS(2605), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2603), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [9444] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2785), 1, - anon_sym_DOLLAR, - ACTIONS(2788), 1, - sym__special_character, - ACTIONS(2791), 1, - anon_sym_DQUOTE, - ACTIONS(2794), 1, - aux_sym_number_token1, - ACTIONS(2797), 1, - aux_sym_number_token2, - ACTIONS(2800), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2803), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2806), 1, - anon_sym_BQUOTE, - ACTIONS(2809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2815), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2818), 1, - sym_test_operator, - ACTIONS(2821), 1, - sym__brace_start, - STATE(1421), 1, - aux_sym__literal_repeat1, - ACTIONS(2268), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2782), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2812), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(536), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2779), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1091), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2230), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [9540] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2383), 1, - anon_sym_DQUOTE, - STATE(1105), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2826), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2824), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [9607] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1505), 1, - sym_file_descriptor, - ACTIONS(1847), 1, - anon_sym_DOLLAR, - ACTIONS(1853), 1, - anon_sym_DQUOTE, - ACTIONS(1856), 1, - aux_sym_number_token1, - ACTIONS(1859), 1, - aux_sym_number_token2, - ACTIONS(1862), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1865), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1868), 1, - anon_sym_BQUOTE, - ACTIONS(1871), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1886), 1, - sym__brace_start, - ACTIONS(2831), 1, - sym__special_character, - ACTIONS(2834), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2837), 1, - sym_test_operator, - ACTIONS(2840), 1, - sym_variable_name, - STATE(1289), 1, - aux_sym__literal_repeat1, - STATE(4369), 1, - sym_subscript, - ACTIONS(1844), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1874), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2828), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(538), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1533), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1467), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [9706] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 1, - sym_file_descriptor, - ACTIONS(2502), 1, - anon_sym_DOLLAR, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2518), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(2845), 1, - sym__special_character, - ACTIONS(2847), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2849), 1, - sym_test_operator, - STATE(1390), 1, - aux_sym__literal_repeat1, - ACTIONS(2500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(549), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2843), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1242), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2019), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [9799] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2857), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2855), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2853), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2851), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [9862] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2865), 1, - anon_sym_DOLLAR, - ACTIONS(2868), 1, - sym__special_character, - ACTIONS(2871), 1, - anon_sym_DQUOTE, - ACTIONS(2874), 1, - aux_sym_number_token1, - ACTIONS(2877), 1, - aux_sym_number_token2, - ACTIONS(2880), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2883), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2886), 1, - anon_sym_BQUOTE, - ACTIONS(2889), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2895), 1, - sym_test_operator, - ACTIONS(2898), 1, - sym__brace_start, - STATE(1555), 1, - aux_sym__literal_repeat1, - ACTIONS(2094), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2862), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2892), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(541), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2859), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1212), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2059), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [9955] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1443), 1, - aux_sym__literal_repeat1, - STATE(553), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2047), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - STATE(1287), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [10020] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 1, - sym_file_descriptor, - ACTIONS(2502), 1, - anon_sym_DOLLAR, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2516), 1, - anon_sym_BQUOTE, - ACTIONS(2518), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(2845), 1, - sym__special_character, - ACTIONS(2849), 1, - sym_test_operator, - ACTIONS(2901), 1, - aux_sym__simple_variable_name_token1, - STATE(1390), 1, - aux_sym__literal_repeat1, - ACTIONS(2500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(547), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2843), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1242), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1989), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [10115] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_DQUOTE, - STATE(1276), 1, - sym_string, - ACTIONS(2907), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2903), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [10182] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - sym_file_descriptor, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2915), 1, - sym__special_character, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2927), 1, - anon_sym_BQUOTE, - ACTIONS(2929), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2933), 1, - sym_test_operator, - ACTIONS(2935), 1, - sym__brace_start, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(2911), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(555), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2909), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1339), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [10275] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_DQUOTE, - STATE(1276), 1, - sym_string, - ACTIONS(2907), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2903), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [10342] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2268), 1, - sym_file_descriptor, - ACTIONS(2564), 1, - anon_sym_DOLLAR, - ACTIONS(2570), 1, - anon_sym_DQUOTE, - ACTIONS(2573), 1, - aux_sym_number_token1, - ACTIONS(2576), 1, - aux_sym_number_token2, - ACTIONS(2579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2582), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2585), 1, - anon_sym_BQUOTE, - ACTIONS(2588), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2600), 1, - sym__brace_start, - ACTIONS(2940), 1, - sym__special_character, - ACTIONS(2943), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2946), 1, - sym_test_operator, - STATE(1390), 1, - aux_sym__literal_repeat1, - ACTIONS(2561), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2591), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(547), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2937), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1242), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2230), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [10437] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(931), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(663), 30, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_done, - anon_sym_if, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [10496] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 1, - sym_file_descriptor, - ACTIONS(2502), 1, - anon_sym_DOLLAR, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2518), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(2845), 1, - sym__special_character, - ACTIONS(2849), 1, - sym_test_operator, - ACTIONS(2901), 1, - aux_sym__simple_variable_name_token1, - STATE(1390), 1, - aux_sym__literal_repeat1, - ACTIONS(2500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(547), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2843), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1242), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1989), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [10589] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1443), 1, - aux_sym__literal_repeat1, - STATE(553), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2051), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - STATE(1287), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [10654] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2855), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2857), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(2853), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2851), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [10717] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2383), 1, - anon_sym_DQUOTE, - STATE(1105), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2826), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2824), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [10784] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2731), 1, - anon_sym_DOLLAR, - ACTIONS(2737), 1, - anon_sym_DQUOTE, - ACTIONS(2740), 1, - aux_sym_number_token1, - ACTIONS(2743), 1, - aux_sym_number_token2, - ACTIONS(2746), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2749), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2752), 1, - anon_sym_BQUOTE, - ACTIONS(2755), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2764), 1, - sym__brace_start, - ACTIONS(2952), 1, - sym__special_character, - ACTIONS(2955), 1, - sym_test_operator, - STATE(1443), 1, - aux_sym__literal_repeat1, - ACTIONS(2094), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(2728), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2758), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(553), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2949), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1287), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2059), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [10877] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1897), 1, - anon_sym_DQUOTE, - STATE(1051), 1, - sym_string, - ACTIONS(2960), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2958), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [10944] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2094), 1, - sym_file_descriptor, - ACTIONS(2968), 1, - anon_sym_DOLLAR, - ACTIONS(2971), 1, - sym__special_character, - ACTIONS(2974), 1, - anon_sym_DQUOTE, - ACTIONS(2977), 1, - aux_sym_number_token1, - ACTIONS(2980), 1, - aux_sym_number_token2, - ACTIONS(2983), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2986), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2989), 1, - anon_sym_BQUOTE, - ACTIONS(2992), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2998), 1, - sym_test_operator, - ACTIONS(3001), 1, - sym__brace_start, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(2965), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2995), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(555), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2962), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1339), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2059), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [11037] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1897), 1, - anon_sym_DQUOTE, - STATE(1051), 1, - sym_string, - ACTIONS(2960), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2958), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [11104] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1543), 1, - sym_file_descriptor, - ACTIONS(1925), 1, - anon_sym_DOLLAR, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1935), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1939), 1, - anon_sym_BQUOTE, - ACTIONS(1941), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(3006), 1, - sym__special_character, - ACTIONS(3008), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3010), 1, - sym_test_operator, - ACTIONS(3012), 1, - sym_variable_name, - STATE(1289), 1, - aux_sym__literal_repeat1, - STATE(4369), 1, - sym_subscript, - ACTIONS(1923), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3004), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(538), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1533), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1517), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [11203] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3018), 1, - anon_sym_DOLLAR, - ACTIONS(3020), 1, - sym__special_character, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - ACTIONS(3024), 1, - aux_sym_number_token1, - ACTIONS(3026), 1, - aux_sym_number_token2, - ACTIONS(3028), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3030), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, - anon_sym_BQUOTE, - ACTIONS(3034), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3038), 1, - sym_test_operator, - ACTIONS(3040), 1, - sym__brace_start, - STATE(1555), 1, - aux_sym__literal_repeat1, - ACTIONS(2047), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(3016), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3036), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(541), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3014), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1212), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [11296] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 1, - sym_file_descriptor, - ACTIONS(2502), 1, - anon_sym_DOLLAR, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2516), 1, - anon_sym_BQUOTE, - ACTIONS(2518), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(2845), 1, - sym__special_character, - ACTIONS(2849), 1, - sym_test_operator, - ACTIONS(3042), 1, - aux_sym__simple_variable_name_token1, - STATE(1390), 1, - aux_sym__literal_repeat1, - ACTIONS(2500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(543), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2843), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1242), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2019), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [11391] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3044), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(3046), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2853), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2851), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [11454] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1553), 1, - sym_file_descriptor, - ACTIONS(1925), 1, - anon_sym_DOLLAR, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1935), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1939), 1, - anon_sym_BQUOTE, - ACTIONS(1941), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(3006), 1, - sym__special_character, - ACTIONS(3010), 1, - sym_test_operator, - ACTIONS(3012), 1, - sym_variable_name, - ACTIONS(3048), 1, - aux_sym__simple_variable_name_token1, - STATE(1289), 1, - aux_sym__literal_repeat1, - STATE(4369), 1, - sym_subscript, - ACTIONS(1923), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1943), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3004), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(557), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1533), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1549), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [11553] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2705), 1, - anon_sym_DQUOTE, - STATE(1351), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3052), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3050), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [11620] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_DQUOTE, - STATE(1302), 1, - sym_string, - ACTIONS(3058), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3054), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [11687] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2705), 1, - anon_sym_DQUOTE, - STATE(1351), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3052), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3050), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [11754] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - STATE(1144), 1, - sym_string, - ACTIONS(3062), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3060), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [11821] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3044), 1, - anon_sym_SEMI_SEMI, - ACTIONS(3046), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2853), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2851), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [11884] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2047), 1, - sym_file_descriptor, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2915), 1, - sym__special_character, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2927), 1, - anon_sym_BQUOTE, - ACTIONS(2929), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2933), 1, - sym_test_operator, - ACTIONS(2935), 1, - sym__brace_start, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(2911), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(555), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2909), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1339), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [11977] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3018), 1, - anon_sym_DOLLAR, - ACTIONS(3020), 1, - sym__special_character, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - ACTIONS(3024), 1, - aux_sym_number_token1, - ACTIONS(3026), 1, - aux_sym_number_token2, - ACTIONS(3028), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3030), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, - anon_sym_BQUOTE, - ACTIONS(3034), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3038), 1, - sym_test_operator, - ACTIONS(3040), 1, - sym__brace_start, - STATE(1555), 1, - aux_sym__literal_repeat1, - ACTIONS(2051), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(3016), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3036), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(541), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3014), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1212), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [12070] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_DQUOTE, - STATE(1302), 1, - sym_string, - ACTIONS(3058), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3054), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [12137] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - STATE(1144), 1, - sym_string, - ACTIONS(3062), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3060), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [12204] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - STATE(1431), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3064), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [12270] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_DQUOTE, - STATE(1302), 1, - sym_string, - ACTIONS(3058), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3054), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [12336] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - sym_file_descriptor, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2929), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3070), 1, - sym__special_character, - ACTIONS(3072), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(2911), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(598), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3068), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1375), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [12426] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2536), 1, - anon_sym_DQUOTE, - STATE(1333), 1, - sym_string, - ACTIONS(3076), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3074), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [12492] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2536), 1, - anon_sym_DQUOTE, - STATE(1333), 1, - sym_string, - ACTIONS(3076), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3074), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [12558] = 32, - ACTIONS(63), 1, - sym_comment, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(434), 1, - anon_sym_LBRACK, - ACTIONS(436), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(562), 1, - anon_sym_DOLLAR, - ACTIONS(564), 1, - sym__special_character, - ACTIONS(566), 1, - anon_sym_DQUOTE, - ACTIONS(570), 1, - aux_sym_number_token1, - ACTIONS(572), 1, - aux_sym_number_token2, - ACTIONS(574), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(576), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(578), 1, - anon_sym_BQUOTE, - ACTIONS(580), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(584), 1, - sym_test_operator, - ACTIONS(588), 1, - sym_variable_name, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3078), 1, - sym_word, - STATE(450), 1, - sym_command_name, - STATE(940), 1, - aux_sym__literal_repeat1, - STATE(1200), 1, - sym_concatenation, - STATE(1408), 1, - sym_variable_assignment, - STATE(3072), 1, - sym_command, - STATE(4360), 1, - sym_subscript, - ACTIONS(546), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(568), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(582), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(941), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3067), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(734), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [12674] = 32, - ACTIONS(63), 1, - sym_comment, - ACTIONS(412), 1, - anon_sym_LPAREN, - ACTIONS(434), 1, - anon_sym_LBRACK, - ACTIONS(436), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(442), 1, - anon_sym_DOLLAR, - ACTIONS(444), 1, - sym__special_character, - ACTIONS(446), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - aux_sym_number_token1, - ACTIONS(452), 1, - aux_sym_number_token2, - ACTIONS(454), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(456), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(458), 1, - anon_sym_BQUOTE, - ACTIONS(460), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(464), 1, - sym_test_operator, - ACTIONS(468), 1, - sym_variable_name, - ACTIONS(470), 1, - sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3080), 1, - sym_word, - STATE(446), 1, - sym_command_name, - STATE(831), 1, - aux_sym__literal_repeat1, - STATE(1003), 1, - sym_concatenation, - STATE(1216), 1, - sym_variable_assignment, - STATE(3072), 1, - sym_command, - STATE(4372), 1, - sym_subscript, - ACTIONS(406), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(448), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(462), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1002), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3067), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(665), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [12790] = 32, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(121), 1, - sym_variable_name, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(773), 1, - sym__special_character, - ACTIONS(777), 1, - sym_test_operator, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3082), 1, - sym_word, - STATE(481), 1, - sym_command_name, - STATE(1096), 1, - aux_sym__literal_repeat1, - STATE(1341), 1, - sym_concatenation, - STATE(1484), 1, - sym_variable_assignment, - STATE(3033), 1, - sym_command, - STATE(4373), 1, - sym_subscript, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(775), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(894), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3027), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(778), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [12906] = 32, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(362), 1, - sym__special_character, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(382), 1, - sym_test_operator, - ACTIONS(386), 1, - sym_variable_name, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3084), 1, - sym_word, - STATE(488), 1, - sym_command_name, - STATE(1096), 1, - aux_sym__literal_repeat1, - STATE(1341), 1, - sym_concatenation, - STATE(1484), 1, - sym_variable_assignment, - STATE(3033), 1, - sym_command, - STATE(4321), 1, - sym_subscript, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(366), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(957), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3027), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(959), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [13022] = 32, - ACTIONS(63), 1, - sym_comment, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(296), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(330), 1, - sym_variable_name, - ACTIONS(1039), 1, - anon_sym_LPAREN, - ACTIONS(1043), 1, - anon_sym_DOLLAR, - ACTIONS(1045), 1, - sym__special_character, - ACTIONS(1047), 1, - anon_sym_DQUOTE, - ACTIONS(1051), 1, - aux_sym_number_token1, - ACTIONS(1053), 1, - aux_sym_number_token2, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, - anon_sym_BQUOTE, - ACTIONS(1061), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1065), 1, - sym_test_operator, - ACTIONS(1069), 1, - sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3086), 1, - sym_word, - STATE(611), 1, - sym_command_name, - STATE(1731), 1, - aux_sym__literal_repeat1, - STATE(1970), 1, - sym_concatenation, - STATE(2154), 1, - sym_variable_assignment, - STATE(3591), 1, - sym_command, - STATE(4307), 1, - sym_subscript, - ACTIONS(1033), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1049), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1063), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(896), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3592), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(1544), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [13138] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3088), 1, - sym_word, - ACTIONS(3092), 1, - anon_sym_DOLLAR, - ACTIONS(3094), 1, - sym__special_character, - ACTIONS(3096), 1, - anon_sym_DQUOTE, - ACTIONS(3100), 1, - aux_sym_number_token1, - ACTIONS(3102), 1, - aux_sym_number_token2, - ACTIONS(3104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3106), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3108), 1, - anon_sym_BQUOTE, - ACTIONS(3110), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3114), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3116), 1, - sym_test_operator, - ACTIONS(3118), 1, - sym_variable_name, - ACTIONS(3120), 1, - sym__brace_start, - STATE(1986), 1, - aux_sym__literal_repeat1, - STATE(4382), 1, - sym_subscript, - ACTIONS(3090), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3098), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3112), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(603), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1517), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1543), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [13238] = 32, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(43), 1, - sym__special_character, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(49), 1, - aux_sym_number_token1, - ACTIONS(51), 1, - aux_sym_number_token2, - ACTIONS(53), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, - anon_sym_BQUOTE, - ACTIONS(59), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(65), 1, - sym_test_operator, - ACTIONS(69), 1, - sym_variable_name, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3122), 1, - sym_word, - STATE(473), 1, - sym_command_name, - STATE(1104), 1, - aux_sym__literal_repeat1, - STATE(1275), 1, - sym_concatenation, - STATE(1461), 1, - sym_variable_assignment, - STATE(3033), 1, - sym_command, - STATE(4317), 1, - sym_subscript, - ACTIONS(13), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(61), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(908), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3027), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(794), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [13354] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3088), 1, - sym_word, - ACTIONS(3092), 1, - anon_sym_DOLLAR, - ACTIONS(3094), 1, - sym__special_character, - ACTIONS(3096), 1, - anon_sym_DQUOTE, - ACTIONS(3100), 1, - aux_sym_number_token1, - ACTIONS(3102), 1, - aux_sym_number_token2, - ACTIONS(3104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3106), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3108), 1, - anon_sym_BQUOTE, - ACTIONS(3110), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3116), 1, - sym_test_operator, - ACTIONS(3118), 1, - sym_variable_name, - ACTIONS(3120), 1, - sym__brace_start, - ACTIONS(3124), 1, - aux_sym__simple_variable_name_token1, - STATE(1986), 1, - aux_sym__literal_repeat1, - STATE(4382), 1, - sym_subscript, - ACTIONS(3090), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3098), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3112), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(581), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1549), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1553), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [13454] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - STATE(1253), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3128), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3126), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [13520] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - STATE(1253), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3128), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3126), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [13586] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - STATE(1395), 1, - sym_string, - ACTIONS(3132), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3130), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [13652] = 32, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1085), 1, - sym__special_character, - ACTIONS(1089), 1, - sym_test_operator, - ACTIONS(1093), 1, - sym_variable_name, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3134), 1, - sym_word, - STATE(597), 1, - sym_command_name, - STATE(1096), 1, - aux_sym__literal_repeat1, - STATE(1341), 1, - sym_concatenation, - STATE(1484), 1, - sym_variable_assignment, - STATE(3033), 1, - sym_command, - STATE(4311), 1, - sym_subscript, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1087), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(899), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3027), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(1407), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [13768] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1085), 1, - sym__special_character, - ACTIONS(1607), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(3140), 1, - sym_test_operator, - STATE(596), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3138), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3136), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1382), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1591), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [13866] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - STATE(1395), 1, - sym_string, - ACTIONS(3132), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3130), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [13932] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1085), 1, - sym__special_character, - ACTIONS(1723), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(3140), 1, - sym_test_operator, - STATE(596), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3138), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3136), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1382), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1721), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [14030] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - STATE(1431), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3064), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [14096] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - STATE(1144), 1, - sym_string, - ACTIONS(3062), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3060), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [14162] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - STATE(1144), 1, - sym_string, - ACTIONS(3062), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3060), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [14228] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2047), 1, - sym_file_descriptor, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2929), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3070), 1, - sym__special_character, - ACTIONS(3072), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(2911), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(598), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3068), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1375), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [14318] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_DQUOTE, - STATE(1302), 1, - sym_string, - ACTIONS(3058), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3054), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [14384] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1709), 1, - sym_file_descriptor, - ACTIONS(2108), 1, - anon_sym_DOLLAR, - ACTIONS(2114), 1, - anon_sym_DQUOTE, - ACTIONS(2117), 1, - aux_sym_number_token1, - ACTIONS(2120), 1, - aux_sym_number_token2, - ACTIONS(2123), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2126), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2129), 1, - anon_sym_BQUOTE, - ACTIONS(2132), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2141), 1, - sym__bare_dollar, - ACTIONS(2144), 1, - sym__brace_start, - ACTIONS(3148), 1, - sym__special_character, - ACTIONS(3151), 1, - sym_test_operator, - STATE(596), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(2102), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3145), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3142), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1382), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1671), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [14482] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1085), 1, - sym__special_character, - ACTIONS(1663), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(3140), 1, - sym_test_operator, - STATE(590), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3138), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3136), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1382), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1661), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [14580] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2094), 1, - sym_file_descriptor, - ACTIONS(2968), 1, - anon_sym_DOLLAR, - ACTIONS(2974), 1, - anon_sym_DQUOTE, - ACTIONS(2977), 1, - aux_sym_number_token1, - ACTIONS(2980), 1, - aux_sym_number_token2, - ACTIONS(2983), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2986), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2989), 1, - anon_sym_BQUOTE, - ACTIONS(2992), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3001), 1, - sym__brace_start, - ACTIONS(3157), 1, - sym__special_character, - ACTIONS(3160), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(2965), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2995), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(598), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3154), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1375), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2059), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [14672] = 32, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(362), 1, - sym__special_character, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(382), 1, - sym_test_operator, - ACTIONS(386), 1, - sym_variable_name, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3084), 1, - sym_word, - STATE(495), 1, - sym_command_name, - STATE(1096), 1, - aux_sym__literal_repeat1, - STATE(1341), 1, - sym_concatenation, - STATE(1665), 1, - sym_variable_assignment, - STATE(3033), 1, - sym_command, - STATE(4321), 1, - sym_subscript, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(366), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(949), 2, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(3027), 2, - sym_subshell, - sym_test_command, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(959), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [14788] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2047), 1, - sym_file_descriptor, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2927), 1, - anon_sym_BQUOTE, - ACTIONS(2929), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3070), 1, - sym__special_character, - ACTIONS(3072), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(2911), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(598), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3068), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1375), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [14880] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - sym_file_descriptor, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2927), 1, - anon_sym_BQUOTE, - ACTIONS(2929), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3070), 1, - sym__special_character, - ACTIONS(3072), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(2911), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(598), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3068), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1375), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [14972] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1085), 1, - sym__special_character, - ACTIONS(1719), 1, - sym_file_descriptor, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1975), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1983), 1, - sym__bare_dollar, - ACTIONS(3140), 1, - sym_test_operator, - STATE(588), 1, - aux_sym_command_repeat2, - STATE(1154), 1, - aux_sym__literal_repeat1, - STATE(1265), 1, - sym_concatenation, - ACTIONS(1967), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3138), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3136), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1382), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1717), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [15070] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3163), 1, - sym_word, - ACTIONS(3169), 1, - anon_sym_DOLLAR, - ACTIONS(3172), 1, - sym__special_character, - ACTIONS(3175), 1, - anon_sym_DQUOTE, - ACTIONS(3181), 1, - aux_sym_number_token1, - ACTIONS(3184), 1, - aux_sym_number_token2, - ACTIONS(3187), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3190), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3193), 1, - anon_sym_BQUOTE, - ACTIONS(3196), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3202), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3205), 1, - sym_test_operator, - ACTIONS(3208), 1, - sym_variable_name, - ACTIONS(3211), 1, - sym__brace_start, - STATE(1986), 1, - aux_sym__literal_repeat1, - STATE(4382), 1, - sym_subscript, - ACTIONS(3166), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3178), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3199), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(603), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1467), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1505), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [15170] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1043), 1, - anon_sym_DOLLAR, - ACTIONS(1047), 1, - anon_sym_DQUOTE, - ACTIONS(1051), 1, - aux_sym_number_token1, - ACTIONS(1053), 1, - aux_sym_number_token2, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, - anon_sym_BQUOTE, - ACTIONS(1061), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym__brace_start, - ACTIONS(3214), 1, - sym_word, - ACTIONS(3218), 1, - sym__special_character, - ACTIONS(3222), 1, - sym_test_operator, - ACTIONS(3224), 1, - sym__bare_dollar, - STATE(609), 1, - aux_sym_command_repeat2, - STATE(1765), 1, - aux_sym__literal_repeat1, - STATE(1991), 1, - sym_concatenation, - ACTIONS(1033), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3216), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3220), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1721), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1475), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1723), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [15269] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1402), 1, - sym__special_character, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(3230), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3232), 2, - anon_sym_COMMA2, - anon_sym_CARET2, - ACTIONS(3234), 2, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - STATE(824), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3226), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3228), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [15370] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - STATE(1253), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3128), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3126), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [15435] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - STATE(1253), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3128), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3126), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [15500] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3246), 1, - anon_sym_LT_LT_LT, - ACTIONS(3250), 1, - sym_variable_name, - STATE(4363), 1, - sym_subscript, - ACTIONS(3240), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3244), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - STATE(2722), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3238), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_AMP, - ACTIONS(2857), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2720), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [15577] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3253), 1, - sym_word, - ACTIONS(3262), 1, - anon_sym_DOLLAR, - ACTIONS(3265), 1, - sym__special_character, - ACTIONS(3268), 1, - anon_sym_DQUOTE, - ACTIONS(3274), 1, - aux_sym_number_token1, - ACTIONS(3277), 1, - aux_sym_number_token2, - ACTIONS(3280), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3283), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3286), 1, - anon_sym_BQUOTE, - ACTIONS(3289), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3295), 1, - sym_test_operator, - ACTIONS(3298), 1, - sym__bare_dollar, - ACTIONS(3301), 1, - sym__brace_start, - STATE(609), 1, - aux_sym_command_repeat2, - STATE(1765), 1, - aux_sym__literal_repeat1, - STATE(1991), 1, - sym_concatenation, - ACTIONS(3256), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3259), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3271), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3292), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1671), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1475), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1709), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [15676] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3248), 1, - sym__brace_start, - ACTIONS(3250), 1, - sym_variable_name, - ACTIONS(3306), 1, - sym_file_descriptor, - STATE(4363), 1, - sym_subscript, - STATE(2722), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2720), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3304), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [15745] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1043), 1, - anon_sym_DOLLAR, - ACTIONS(1047), 1, - anon_sym_DQUOTE, - ACTIONS(1051), 1, - aux_sym_number_token1, - ACTIONS(1053), 1, - aux_sym_number_token2, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, - anon_sym_BQUOTE, - ACTIONS(1061), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym__brace_start, - ACTIONS(3214), 1, - sym_word, - ACTIONS(3218), 1, - sym__special_character, - ACTIONS(3222), 1, - sym_test_operator, - ACTIONS(3224), 1, - sym__bare_dollar, - STATE(604), 1, - aux_sym_command_repeat2, - STATE(1765), 1, - aux_sym__literal_repeat1, - STATE(1991), 1, - sym_concatenation, - ACTIONS(1033), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3216), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3220), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1661), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1475), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1663), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [15844] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1043), 1, - anon_sym_DOLLAR, - ACTIONS(1047), 1, - anon_sym_DQUOTE, - ACTIONS(1051), 1, - aux_sym_number_token1, - ACTIONS(1053), 1, - aux_sym_number_token2, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, - anon_sym_BQUOTE, - ACTIONS(1061), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym__brace_start, - ACTIONS(3214), 1, - sym_word, - ACTIONS(3218), 1, - sym__special_character, - ACTIONS(3222), 1, - sym_test_operator, - ACTIONS(3224), 1, - sym__bare_dollar, - STATE(609), 1, - aux_sym_command_repeat2, - STATE(1765), 1, - aux_sym__literal_repeat1, - STATE(1991), 1, - sym_concatenation, - ACTIONS(1033), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3216), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3220), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1591), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1475), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1607), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [15943] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3246), 1, - anon_sym_LT_LT_LT, - ACTIONS(3250), 1, - sym_variable_name, - STATE(4363), 1, - sym_subscript, - ACTIONS(3240), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3244), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - STATE(2722), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3308), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_AMP, - ACTIONS(3310), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2720), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [16020] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - STATE(1431), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3064), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [16085] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1043), 1, - anon_sym_DOLLAR, - ACTIONS(1047), 1, - anon_sym_DQUOTE, - ACTIONS(1051), 1, - aux_sym_number_token1, - ACTIONS(1053), 1, - aux_sym_number_token2, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, - anon_sym_BQUOTE, - ACTIONS(1061), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym__brace_start, - ACTIONS(3214), 1, - sym_word, - ACTIONS(3218), 1, - sym__special_character, - ACTIONS(3222), 1, - sym_test_operator, - ACTIONS(3224), 1, - sym__bare_dollar, - STATE(612), 1, - aux_sym_command_repeat2, - STATE(1765), 1, - aux_sym__literal_repeat1, - STATE(1991), 1, - sym_concatenation, - ACTIONS(1033), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3216), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3220), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1717), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1475), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1719), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [16184] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, - sym_variable_name, - STATE(4363), 1, - sym_subscript, - ACTIONS(3244), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - STATE(2722), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2720), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 12, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [16253] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - STATE(926), 1, - sym_string, - ACTIONS(2369), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2367), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [16318] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - STATE(926), 1, - sym_string, - ACTIONS(2369), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2367), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [16383] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - STATE(1431), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3064), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [16448] = 6, - ACTIONS(63), 1, - sym_comment, - STATE(1968), 1, - aux_sym__literal_repeat1, - STATE(642), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1620), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2047), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [16510] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_RBRACE, - ACTIONS(931), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(663), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [16568] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1443), 1, - aux_sym__literal_repeat1, - STATE(639), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2051), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - STATE(1580), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [16630] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2855), 1, - ts_builtin_sym_end, - ACTIONS(2853), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2851), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [16688] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3323), 1, - anon_sym_LT_LT_LT, - ACTIONS(3325), 1, - sym_variable_name, - STATE(4358), 1, - sym_subscript, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3319), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3321), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2749), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3310), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(3317), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [16764] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3325), 1, - sym_variable_name, - STATE(4358), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3321), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2749), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [16832] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1443), 1, - aux_sym__literal_repeat1, - STATE(639), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2047), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - STATE(1580), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [16894] = 6, - ACTIONS(63), 1, - sym_comment, - STATE(1968), 1, - aux_sym__literal_repeat1, - STATE(642), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1620), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2051), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [16956] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(931), 22, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(663), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [17012] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 1, - sym_file_descriptor, - ACTIONS(2502), 1, - anon_sym_DOLLAR, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2516), 1, - anon_sym_BQUOTE, - ACTIONS(2518), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(3330), 1, - sym__special_character, - ACTIONS(3332), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3334), 1, - sym_test_operator, - STATE(1390), 1, - aux_sym__literal_repeat1, - ACTIONS(2500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(634), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3328), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2019), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [17104] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3336), 1, - anon_sym_RBRACE, - ACTIONS(931), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(663), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [17162] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3248), 1, - sym__brace_start, - ACTIONS(3306), 1, - sym_file_descriptor, - ACTIONS(3325), 1, - sym_variable_name, - STATE(4358), 1, - sym_subscript, - STATE(2749), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3304), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [17230] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3323), 1, - anon_sym_LT_LT_LT, - ACTIONS(3325), 1, - sym_variable_name, - STATE(4358), 1, - sym_subscript, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3319), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3321), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2749), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2857), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(3339), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [17306] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3341), 1, - anon_sym_RBRACE, - ACTIONS(931), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(663), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [17364] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 1, - sym_file_descriptor, - ACTIONS(2502), 1, - anon_sym_DOLLAR, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2516), 1, - anon_sym_BQUOTE, - ACTIONS(2518), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(3330), 1, - sym__special_character, - ACTIONS(3334), 1, - sym_test_operator, - ACTIONS(3344), 1, - aux_sym__simple_variable_name_token1, - STATE(1390), 1, - aux_sym__literal_repeat1, - ACTIONS(2500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2520), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(636), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3328), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1989), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [17456] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3046), 1, - ts_builtin_sym_end, - ACTIONS(2853), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2851), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [17514] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2268), 1, - sym_file_descriptor, - ACTIONS(2564), 1, - anon_sym_DOLLAR, - ACTIONS(2570), 1, - anon_sym_DQUOTE, - ACTIONS(2573), 1, - aux_sym_number_token1, - ACTIONS(2576), 1, - aux_sym_number_token2, - ACTIONS(2579), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2582), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2585), 1, - anon_sym_BQUOTE, - ACTIONS(2588), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2600), 1, - sym__brace_start, - ACTIONS(3349), 1, - sym__special_character, - ACTIONS(3352), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3355), 1, - sym_test_operator, - STATE(1390), 1, - aux_sym__literal_repeat1, - ACTIONS(2561), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2591), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(636), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3346), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2230), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [17606] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3360), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(3358), 27, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_do, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [17662] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3362), 1, - anon_sym_LPAREN, - ACTIONS(3364), 1, - aux_sym_concatenation_token1, - ACTIONS(3366), 1, - sym__concat, - STATE(686), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1225), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [17726] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2731), 1, - anon_sym_DOLLAR, - ACTIONS(2737), 1, - anon_sym_DQUOTE, - ACTIONS(2740), 1, - aux_sym_number_token1, - ACTIONS(2743), 1, - aux_sym_number_token2, - ACTIONS(2746), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2749), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2752), 1, - anon_sym_BQUOTE, - ACTIONS(2755), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2764), 1, - sym__brace_start, - ACTIONS(3371), 1, - sym__special_character, - ACTIONS(3374), 1, - sym_test_operator, - STATE(1443), 1, - aux_sym__literal_repeat1, - ACTIONS(2094), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(2728), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2758), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(639), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3368), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1580), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2059), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [17816] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3379), 1, - anon_sym_DQUOTE, - STATE(1681), 1, - sym_string, - ACTIONS(3381), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3377), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 32, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [17880] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3379), 1, - anon_sym_DQUOTE, - STATE(1681), 1, - sym_string, - ACTIONS(3381), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3377), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 32, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [17944] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3383), 1, - sym_word, - ACTIONS(3389), 1, - anon_sym_DOLLAR, - ACTIONS(3392), 1, - sym__special_character, - ACTIONS(3395), 1, - anon_sym_DQUOTE, - ACTIONS(3401), 1, - aux_sym_number_token1, - ACTIONS(3404), 1, - aux_sym_number_token2, - ACTIONS(3407), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3410), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3413), 1, - anon_sym_BQUOTE, - ACTIONS(3416), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3422), 1, - sym_test_operator, - ACTIONS(3425), 1, - sym__brace_start, - STATE(1968), 1, - aux_sym__literal_repeat1, - ACTIONS(3386), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3398), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3419), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(642), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2059), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1620), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2094), 13, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [18036] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_DQUOTE, - STATE(1302), 1, - sym_string, - ACTIONS(3058), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3054), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [18099] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3310), 1, - anon_sym_RPAREN, - ACTIONS(3434), 1, - anon_sym_LT_LT_LT, - ACTIONS(3436), 1, - sym_variable_name, - STATE(4391), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3428), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2892), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3317), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [18174] = 22, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3439), 1, - sym_word, - ACTIONS(3443), 1, - anon_sym_DOLLAR, - ACTIONS(3445), 1, - sym__special_character, - ACTIONS(3447), 1, - anon_sym_DQUOTE, - ACTIONS(3451), 1, - aux_sym_number_token1, - ACTIONS(3453), 1, - aux_sym_number_token2, - ACTIONS(3455), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3457), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3459), 1, - anon_sym_BQUOTE, - ACTIONS(3461), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3465), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3467), 1, - sym_test_operator, - ACTIONS(3469), 1, - sym__brace_start, - STATE(2118), 1, - aux_sym__literal_repeat1, - ACTIONS(3441), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3449), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3463), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(650), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2019), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1756), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2023), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [18267] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2853), 21, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2851), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [18322] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2047), 1, - sym_file_descriptor, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2927), 1, - anon_sym_BQUOTE, - ACTIONS(2929), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3473), 1, - sym__special_character, - ACTIONS(3475), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(2911), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(672), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3471), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [18411] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3477), 1, - ts_builtin_sym_end, - ACTIONS(3481), 1, - sym_variable_name, - STATE(4295), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3479), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2819), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2800), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 9, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [18480] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - sym_file_descriptor, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2927), 1, - anon_sym_BQUOTE, - ACTIONS(2929), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3473), 1, - sym__special_character, - ACTIONS(3475), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(2911), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(672), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3471), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [18569] = 22, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3439), 1, - sym_word, - ACTIONS(3443), 1, - anon_sym_DOLLAR, - ACTIONS(3445), 1, - sym__special_character, - ACTIONS(3447), 1, - anon_sym_DQUOTE, - ACTIONS(3451), 1, - aux_sym_number_token1, - ACTIONS(3453), 1, - aux_sym_number_token2, - ACTIONS(3455), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3457), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3459), 1, - anon_sym_BQUOTE, - ACTIONS(3461), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3467), 1, - sym_test_operator, - ACTIONS(3469), 1, - sym__brace_start, - ACTIONS(3484), 1, - aux_sym__simple_variable_name_token1, - STATE(2118), 1, - aux_sym__literal_repeat1, - ACTIONS(3441), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3449), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3463), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(659), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1989), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1756), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2015), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [18662] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3488), 1, - anon_sym_DQUOTE, - STATE(1792), 1, - sym_string, - ACTIONS(3490), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3486), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [18725] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2855), 1, - anon_sym_BQUOTE, - ACTIONS(2853), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2851), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [18782] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2857), 1, - anon_sym_RPAREN, - ACTIONS(3434), 1, - anon_sym_LT_LT_LT, - ACTIONS(3436), 1, - sym_variable_name, - STATE(4391), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3428), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2892), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3339), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [18857] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - STATE(1144), 1, - sym_string, - ACTIONS(3062), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3060), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [18920] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3488), 1, - anon_sym_DQUOTE, - STATE(1792), 1, - sym_string, - ACTIONS(3490), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3486), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [18983] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3248), 1, - sym__brace_start, - ACTIONS(3481), 1, - sym_variable_name, - STATE(4295), 1, - sym_subscript, - ACTIONS(3306), 2, - sym_file_descriptor, - ts_builtin_sym_end, - STATE(2819), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2800), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3304), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [19050] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3492), 1, - anon_sym_LPAREN, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3496), 1, - sym__concat, - STATE(688), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1225), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [19113] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - STATE(1144), 1, - sym_string, - ACTIONS(3062), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3060), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [19176] = 22, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3498), 1, - sym_word, - ACTIONS(3504), 1, - anon_sym_DOLLAR, - ACTIONS(3507), 1, - sym__special_character, - ACTIONS(3510), 1, - anon_sym_DQUOTE, - ACTIONS(3516), 1, - aux_sym_number_token1, - ACTIONS(3519), 1, - aux_sym_number_token2, - ACTIONS(3522), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3525), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3528), 1, - anon_sym_BQUOTE, - ACTIONS(3531), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3537), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3540), 1, - sym_test_operator, - ACTIONS(3543), 1, - sym__brace_start, - STATE(2118), 1, - aux_sym__literal_repeat1, - ACTIONS(3501), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3513), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3534), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(659), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2230), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1756), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2268), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [19269] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3046), 1, - anon_sym_BQUOTE, - ACTIONS(2853), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2851), 26, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [19326] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_DQUOTE, - STATE(1302), 1, - sym_string, - ACTIONS(3058), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3054), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [19389] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3481), 1, - sym_variable_name, - ACTIONS(3546), 1, - ts_builtin_sym_end, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - STATE(4295), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3479), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3550), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(2819), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3548), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2800), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [19464] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3436), 1, - sym_variable_name, - STATE(4391), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3432), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2892), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [19531] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3554), 1, - sym_word, - ACTIONS(3560), 1, - anon_sym_DOLLAR, - ACTIONS(3563), 1, - sym__special_character, - ACTIONS(3566), 1, - anon_sym_DQUOTE, - ACTIONS(3572), 1, - aux_sym_number_token1, - ACTIONS(3575), 1, - aux_sym_number_token2, - ACTIONS(3578), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3581), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3584), 1, - anon_sym_BQUOTE, - ACTIONS(3587), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3593), 1, - sym_test_operator, - ACTIONS(3596), 1, - sym__brace_start, - STATE(2134), 1, - aux_sym__literal_repeat1, - ACTIONS(3557), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3569), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3590), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(664), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2059), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1891), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2094), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [19622] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, - aux_sym_concatenation_token1, - ACTIONS(3366), 1, - sym__concat, - STATE(686), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1225), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [19683] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, - aux_sym_concatenation_token1, - ACTIONS(3366), 1, - sym__concat, - STATE(684), 1, - aux_sym_concatenation_repeat1, - ACTIONS(178), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(145), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [19744] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym__concat, - ACTIONS(3601), 1, - anon_sym_DQUOTE, - STATE(1796), 1, - sym_string, - ACTIONS(3603), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3599), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [19807] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym__concat, - ACTIONS(3601), 1, - anon_sym_DQUOTE, - STATE(1796), 1, - sym_string, - ACTIONS(3603), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3599), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [19870] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3605), 1, - sym_word, - ACTIONS(3611), 1, - anon_sym_DOLLAR, - ACTIONS(3614), 1, - sym__special_character, - ACTIONS(3617), 1, - anon_sym_DQUOTE, - ACTIONS(3623), 1, - aux_sym_number_token1, - ACTIONS(3626), 1, - aux_sym_number_token2, - ACTIONS(3629), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3632), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3635), 1, - anon_sym_BQUOTE, - ACTIONS(3638), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3644), 1, - sym_test_operator, - ACTIONS(3647), 1, - sym__brace_start, - STATE(2094), 1, - aux_sym__literal_repeat1, - ACTIONS(3608), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3620), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3641), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(669), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2059), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1763), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2094), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [19961] = 6, - ACTIONS(63), 1, - sym_comment, - STATE(2134), 1, - aux_sym__literal_repeat1, - STATE(664), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1891), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2049), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2051), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [20022] = 6, - ACTIONS(63), 1, - sym_comment, - STATE(2134), 1, - aux_sym__literal_repeat1, - STATE(664), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1891), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2047), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [20083] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2094), 1, - sym_file_descriptor, - ACTIONS(2968), 1, - anon_sym_DOLLAR, - ACTIONS(2974), 1, - anon_sym_DQUOTE, - ACTIONS(2977), 1, - aux_sym_number_token1, - ACTIONS(2980), 1, - aux_sym_number_token2, - ACTIONS(2983), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2986), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2989), 1, - anon_sym_BQUOTE, - ACTIONS(2992), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3001), 1, - sym__brace_start, - ACTIONS(3653), 1, - sym__special_character, - ACTIONS(3656), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(2965), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2995), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(672), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3650), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2059), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [20172] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, - aux_sym_concatenation_token1, - ACTIONS(3366), 1, - sym__concat, - STATE(686), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3661), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3659), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [20233] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3248), 1, - sym__brace_start, - ACTIONS(3306), 1, - sym_file_descriptor, - ACTIONS(3436), 1, - sym_variable_name, - STATE(4391), 1, - sym_subscript, - STATE(2892), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3304), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [20300] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, - aux_sym_concatenation_token1, - ACTIONS(3366), 1, - sym__concat, - STATE(684), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3665), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3663), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [20361] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2855), 1, - ts_builtin_sym_end, - ACTIONS(3481), 1, - sym_variable_name, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - STATE(4295), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3479), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3550), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(2819), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3667), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2800), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [20436] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(160), 1, - anon_sym_DQUOTE, - STATE(1605), 1, - sym_string, - ACTIONS(3671), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3669), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 34, - anon_sym_RPAREN_RPAREN, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [20497] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, - aux_sym_concatenation_token1, - ACTIONS(3366), 1, - sym__concat, - STATE(684), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3675), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3673), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [20558] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, - aux_sym_concatenation_token1, - ACTIONS(3366), 1, - sym__concat, - STATE(684), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1242), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [20619] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3677), 1, - aux_sym_concatenation_token1, - ACTIONS(3680), 1, - sym__concat, - STATE(680), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1258), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [20680] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, - aux_sym_concatenation_token1, - ACTIONS(3366), 1, - sym__concat, - STATE(686), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3685), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3683), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [20741] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3687), 1, - sym_word, - ACTIONS(3691), 1, - anon_sym_DOLLAR, - ACTIONS(3693), 1, - sym__special_character, - ACTIONS(3695), 1, - anon_sym_DQUOTE, - ACTIONS(3699), 1, - aux_sym_number_token1, - ACTIONS(3701), 1, - aux_sym_number_token2, - ACTIONS(3703), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3705), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3707), 1, - anon_sym_BQUOTE, - ACTIONS(3709), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3713), 1, - sym_test_operator, - ACTIONS(3715), 1, - sym__brace_start, - STATE(2094), 1, - aux_sym__literal_repeat1, - ACTIONS(3689), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3697), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3711), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(669), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2049), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1763), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2051), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [20832] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(160), 1, - anon_sym_DQUOTE, - STATE(1605), 1, - sym_string, - ACTIONS(3671), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3669), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 34, - anon_sym_RPAREN_RPAREN, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [20893] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, - aux_sym_concatenation_token1, - ACTIONS(3717), 1, - sym__concat, - STATE(680), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1246), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [20954] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3687), 1, - sym_word, - ACTIONS(3691), 1, - anon_sym_DOLLAR, - ACTIONS(3693), 1, - sym__special_character, - ACTIONS(3695), 1, - anon_sym_DQUOTE, - ACTIONS(3699), 1, - aux_sym_number_token1, - ACTIONS(3701), 1, - aux_sym_number_token2, - ACTIONS(3703), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3705), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3707), 1, - anon_sym_BQUOTE, - ACTIONS(3709), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3713), 1, - sym_test_operator, - ACTIONS(3715), 1, - sym__brace_start, - STATE(2094), 1, - aux_sym__literal_repeat1, - ACTIONS(3689), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3697), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3711), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(669), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2045), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1763), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2047), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [21045] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, - aux_sym_concatenation_token1, - ACTIONS(3719), 1, - sym__concat, - STATE(680), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1252), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [21106] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(244), 1, - anon_sym_DQUOTE, - STATE(1482), 1, - sym_string, - ACTIONS(3723), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [21166] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3725), 1, - sym__concat, - STATE(731), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1252), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [21226] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3729), 1, - anon_sym_DQUOTE, - STATE(2002), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3731), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3727), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [21288] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(244), 1, - anon_sym_DQUOTE, - STATE(1482), 1, - sym_string, - ACTIONS(3723), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [21348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1284), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [21402] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 1, - anon_sym_LPAREN, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(855), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1225), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [21464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1338), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [21518] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1258), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [21572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1276), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [21626] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(244), 1, - anon_sym_DQUOTE, - STATE(1482), 1, - sym_string, - ACTIONS(3723), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_COLON, - sym_test_operator, - [21686] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(244), 1, - anon_sym_DQUOTE, - STATE(1482), 1, - sym_string, - ACTIONS(3723), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_COLON, - sym_test_operator, - [21746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1280), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [21800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1298), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [21854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1310), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [21908] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3248), 1, - sym__brace_start, - ACTIONS(3306), 1, - sym_file_descriptor, - ACTIONS(3737), 1, - sym_variable_name, - STATE(4376), 1, - sym_subscript, - STATE(2900), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2902), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3304), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [21974] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1294), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22028] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3737), 1, - sym_variable_name, - STATE(4376), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3740), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2900), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2902), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 9, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22094] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1302), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22148] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1314), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22202] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1402), 1, - sym__special_character, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(3746), 1, - anon_sym_RBRACE3, - ACTIONS(3748), 1, - sym_regex, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(864), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3742), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3744), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [22298] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 1, - aux_sym_concatenation_token1, - ACTIONS(3752), 1, - sym__concat, - STATE(710), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1246), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [22358] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 1, - aux_sym_concatenation_token1, - ACTIONS(3754), 1, - sym__concat, - STATE(710), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1252), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [22418] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3756), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22490] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3767), 1, - aux_sym_concatenation_token1, - ACTIONS(3770), 1, - sym__concat, - STATE(710), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1258), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [22550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1268), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1268), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1318), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22712] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1342), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22766] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(244), 1, - anon_sym_DQUOTE, - STATE(1482), 1, - sym_string, - ACTIONS(3723), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [22826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1346), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22880] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1326), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22934] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1272), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [22988] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(160), 1, - anon_sym_DQUOTE, - STATE(1605), 1, - sym_string, - ACTIONS(3671), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3669), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 33, - anon_sym_RPAREN_RPAREN, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [23048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1334), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [23102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1330), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [23156] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(160), 1, - anon_sym_DQUOTE, - STATE(1605), 1, - sym_string, - ACTIONS(3671), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3669), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 33, - anon_sym_RPAREN_RPAREN, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [23216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1322), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [23270] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 1, - aux_sym_concatenation_token1, - ACTIONS(3773), 1, - sym__concat, - STATE(707), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [23330] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3775), 1, - sym__concat, - STATE(731), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1246), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [23390] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3729), 1, - anon_sym_DQUOTE, - STATE(2002), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3731), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3727), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [23452] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 1, - aux_sym_concatenation_token1, - ACTIONS(3773), 1, - sym__concat, - STATE(707), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3779), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3777), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [23512] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3496), 1, - sym__concat, - STATE(725), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3675), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3673), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [23572] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3496), 1, - sym__concat, - STATE(688), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3685), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3683), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [23632] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 1, - aux_sym_concatenation_token1, - ACTIONS(3773), 1, - sym__concat, - STATE(708), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3783), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3781), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [23692] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3785), 1, - aux_sym_concatenation_token1, - ACTIONS(3788), 1, - sym__concat, - STATE(731), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1258), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [23752] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3791), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [23824] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3496), 1, - sym__concat, - STATE(725), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1242), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [23884] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3496), 1, - sym__concat, - STATE(688), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1225), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [23944] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(244), 1, - anon_sym_DQUOTE, - STATE(1482), 1, - sym_string, - ACTIONS(3723), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [24004] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3601), 1, - anon_sym_DQUOTE, - STATE(1796), 1, - sym_string, - ACTIONS(3603), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3599), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [24064] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3601), 1, - anon_sym_DQUOTE, - STATE(1796), 1, - sym_string, - ACTIONS(3603), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3599), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [24124] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3795), 1, - anon_sym_DQUOTE, - STATE(1757), 1, - sym_string, - ACTIONS(3797), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3793), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [24186] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3496), 1, - sym__concat, - STATE(725), 1, - aux_sym_concatenation_repeat1, - ACTIONS(178), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(145), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [24246] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3799), 1, - sym_word, - ACTIONS(3803), 1, - anon_sym_DOLLAR, - ACTIONS(3805), 1, - sym__special_character, - ACTIONS(3807), 1, - anon_sym_DQUOTE, - ACTIONS(3811), 1, - aux_sym_number_token1, - ACTIONS(3813), 1, - aux_sym_number_token2, - ACTIONS(3815), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3817), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3819), 1, - anon_sym_BQUOTE, - ACTIONS(3821), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3825), 1, - sym_test_operator, - ACTIONS(3827), 1, - sym__brace_start, - STATE(2178), 1, - aux_sym__literal_repeat1, - ACTIONS(3801), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3809), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3823), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(752), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2045), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(2020), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2047), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [24336] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3795), 1, - anon_sym_DQUOTE, - STATE(1757), 1, - sym_string, - ACTIONS(3797), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3793), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [24398] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3310), 1, - anon_sym_BQUOTE, - ACTIONS(3737), 1, - sym_variable_name, - ACTIONS(3833), 1, - anon_sym_LT_LT_LT, - STATE(4376), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3740), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3831), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(2900), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3829), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2902), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 24, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [24472] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2857), 1, - anon_sym_BQUOTE, - ACTIONS(3737), 1, - sym_variable_name, - ACTIONS(3833), 1, - anon_sym_LT_LT_LT, - STATE(4376), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3740), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3831), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(2900), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3835), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2902), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 24, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [24546] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - STATE(1253), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3128), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3126), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [24608] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - STATE(1253), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3128), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3126), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [24670] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3799), 1, - sym_word, - ACTIONS(3803), 1, - anon_sym_DOLLAR, - ACTIONS(3805), 1, - sym__special_character, - ACTIONS(3807), 1, - anon_sym_DQUOTE, - ACTIONS(3811), 1, - aux_sym_number_token1, - ACTIONS(3813), 1, - aux_sym_number_token2, - ACTIONS(3815), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3817), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3819), 1, - anon_sym_BQUOTE, - ACTIONS(3821), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3825), 1, - sym_test_operator, - ACTIONS(3827), 1, - sym__brace_start, - STATE(2178), 1, - aux_sym__literal_repeat1, - ACTIONS(3801), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3809), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3823), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(752), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2049), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(2020), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2051), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [24760] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 1, - aux_sym_concatenation_token1, - ACTIONS(3773), 1, - sym__concat, - STATE(708), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [24820] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 1, - aux_sym_concatenation_token1, - ACTIONS(3773), 1, - sym__concat, - STATE(707), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [24880] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - STATE(1431), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3064), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [24942] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - STATE(1431), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3064), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [25004] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3845), 1, - anon_sym_LPAREN, - ACTIONS(3847), 1, - aux_sym_concatenation_token1, - ACTIONS(3849), 1, - sym__concat, - STATE(813), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1225), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [25066] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3851), 1, - sym_word, - ACTIONS(3857), 1, - anon_sym_DOLLAR, - ACTIONS(3860), 1, - sym__special_character, - ACTIONS(3863), 1, - anon_sym_DQUOTE, - ACTIONS(3869), 1, - aux_sym_number_token1, - ACTIONS(3872), 1, - aux_sym_number_token2, - ACTIONS(3875), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3878), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3881), 1, - anon_sym_BQUOTE, - ACTIONS(3884), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3890), 1, - sym_test_operator, - ACTIONS(3893), 1, - sym__brace_start, - STATE(2178), 1, - aux_sym__literal_repeat1, - ACTIONS(3854), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3866), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3887), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(752), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2059), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(2020), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2094), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [25156] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3896), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [25228] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3248), 1, - sym__brace_start, - ACTIONS(3306), 1, - sym_file_descriptor, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3304), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [25294] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3898), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [25366] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 9, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [25432] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3496), 1, - sym__concat, - STATE(725), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3665), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3663), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [25492] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3494), 1, - aux_sym_concatenation_token1, - ACTIONS(3496), 1, - sym__concat, - STATE(688), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3661), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3659), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [25552] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3900), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [25624] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3904), 1, - anon_sym_DQUOTE, - STATE(2032), 1, - sym_string, - ACTIONS(3906), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3902), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [25686] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3904), 1, - anon_sym_DQUOTE, - STATE(2032), 1, - sym_string, - ACTIONS(3906), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3902), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [25748] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1402), 1, - sym__special_character, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(3912), 1, - anon_sym_RBRACE3, - ACTIONS(3914), 1, - sym_regex, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(868), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3908), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3910), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [25844] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3916), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [25916] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3918), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [25988] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(3764), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2977), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3920), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [26060] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1326), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [26113] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3922), 1, - aux_sym_concatenation_token1, - ACTIONS(3924), 1, - sym__concat, - STATE(836), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1246), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [26172] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - ACTIONS(3926), 1, - anon_sym_LPAREN, - STATE(930), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1225), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [26233] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3847), 1, - aux_sym_concatenation_token1, - ACTIONS(3849), 1, - sym__concat, - STATE(813), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3661), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3659), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [26292] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3922), 1, - aux_sym_concatenation_token1, - ACTIONS(3928), 1, - sym__concat, - STATE(767), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3779), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3777), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [26351] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3922), 1, - aux_sym_concatenation_token1, - ACTIONS(3930), 1, - sym__concat, - STATE(836), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1252), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [26410] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3922), 1, - aux_sym_concatenation_token1, - ACTIONS(3928), 1, - sym__concat, - STATE(771), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3783), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3781), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [26469] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(856), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3665), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3663), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [26528] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(855), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3661), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3659), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [26587] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1346), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [26640] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3847), 1, - aux_sym_concatenation_token1, - ACTIONS(3849), 1, - sym__concat, - STATE(814), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3665), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3663), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [26699] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(856), 1, - aux_sym_concatenation_repeat1, - ACTIONS(178), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(145), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [26758] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(855), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1225), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [26817] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3932), 1, - aux_sym_concatenation_token1, - ACTIONS(3934), 1, - sym__concat, - STATE(798), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [26876] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3932), 1, - aux_sym_concatenation_token1, - ACTIONS(3934), 1, - sym__concat, - STATE(797), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [26935] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3936), 1, - aux_sym_concatenation_token1, - ACTIONS(3939), 1, - sym__concat, - STATE(781), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [26994] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3942), 1, - sym_word, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, - anon_sym_DOLLAR, - ACTIONS(3954), 1, - sym__special_character, - ACTIONS(3956), 1, - anon_sym_DQUOTE, - ACTIONS(3960), 1, - aux_sym_number_token1, - ACTIONS(3962), 1, - aux_sym_number_token2, - ACTIONS(3964), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3966), 1, - anon_sym_RBRACE3, - ACTIONS(3969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, - anon_sym_BQUOTE, - ACTIONS(3973), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3977), 1, - sym_test_operator, - ACTIONS(3979), 1, - sym__brace_start, - STATE(3217), 1, - aux_sym__literal_repeat1, - ACTIONS(3944), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3958), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3975), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2277), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - ACTIONS(3946), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3948), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(3005), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [27087] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1402), 1, - sym__special_character, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(3912), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(866), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3981), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3983), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [27180] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3932), 1, - aux_sym_concatenation_token1, - ACTIONS(3934), 1, - sym__concat, - STATE(798), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3985), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [27239] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3932), 1, - aux_sym_concatenation_token1, - ACTIONS(3934), 1, - sym__concat, - STATE(797), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3989), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [27298] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3922), 1, - aux_sym_concatenation_token1, - ACTIONS(3928), 1, - sym__concat, - STATE(771), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [27357] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3922), 1, - aux_sym_concatenation_token1, - ACTIONS(3928), 1, - sym__concat, - STATE(767), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [27416] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3847), 1, - aux_sym_concatenation_token1, - ACTIONS(3849), 1, - sym__concat, - STATE(814), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [27475] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1318), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [27528] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3847), 1, - aux_sym_concatenation_token1, - ACTIONS(3849), 1, - sym__concat, - STATE(813), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3685), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3683), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [27587] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3995), 1, - anon_sym_DQUOTE, - STATE(2005), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3997), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3993), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [27648] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3999), 1, - sym__special_character, - STATE(796), 1, - aux_sym__literal_repeat1, - ACTIONS(3675), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3673), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [27705] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3995), 1, - anon_sym_DQUOTE, - STATE(2005), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3997), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3993), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [27766] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3847), 1, - aux_sym_concatenation_token1, - ACTIONS(3849), 1, - sym__concat, - STATE(813), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1225), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [27825] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3847), 1, - aux_sym_concatenation_token1, - ACTIONS(3849), 1, - sym__concat, - STATE(814), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3675), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3673), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [27884] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4001), 1, - sym__special_character, - STATE(796), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1352), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [27941] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3932), 1, - aux_sym_concatenation_token1, - ACTIONS(4004), 1, - sym__concat, - STATE(799), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1246), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [28000] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3932), 1, - aux_sym_concatenation_token1, - ACTIONS(4006), 1, - sym__concat, - STATE(799), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1252), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [28059] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4008), 1, - aux_sym_concatenation_token1, - ACTIONS(4011), 1, - sym__concat, - STATE(799), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1258), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [28118] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(855), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3685), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3683), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [28177] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(856), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3675), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3673), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [28236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1284), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [28289] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1338), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [28342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1258), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [28395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1276), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [28448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1280), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [28501] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4014), 1, - aux_sym_concatenation_token1, - ACTIONS(4016), 1, - sym__concat, - STATE(810), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1246), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [28560] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4014), 1, - aux_sym_concatenation_token1, - ACTIONS(4018), 1, - sym__concat, - STATE(810), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1252), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [28619] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3999), 1, - sym__special_character, - STATE(796), 1, - aux_sym__literal_repeat1, - ACTIONS(3665), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3663), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [28676] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4020), 1, - aux_sym_concatenation_token1, - ACTIONS(4023), 1, - sym__concat, - STATE(810), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1258), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [28735] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3932), 1, - aux_sym_concatenation_token1, - ACTIONS(3934), 1, - sym__concat, - STATE(797), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [28794] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1298), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [28847] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3847), 1, - aux_sym_concatenation_token1, - ACTIONS(4026), 1, - sym__concat, - STATE(781), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1252), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [28906] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3847), 1, - aux_sym_concatenation_token1, - ACTIONS(4028), 1, - sym__concat, - STATE(781), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1246), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [28965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1310), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [29018] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4014), 1, - aux_sym_concatenation_token1, - ACTIONS(4030), 1, - sym__concat, - STATE(807), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [29077] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4014), 1, - aux_sym_concatenation_token1, - ACTIONS(4030), 1, - sym__concat, - STATE(807), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4034), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4032), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [29136] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4014), 1, - aux_sym_concatenation_token1, - ACTIONS(4030), 1, - sym__concat, - STATE(808), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4038), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4036), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [29195] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1284), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [29248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1294), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [29301] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1338), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [29354] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1258), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [29407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1302), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [29460] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1402), 1, - sym__special_character, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(3746), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(866), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3981), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3983), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [29553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1276), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [29606] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1314), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [29659] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1280), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [29712] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3847), 1, - aux_sym_concatenation_token1, - ACTIONS(3849), 1, - sym__concat, - STATE(814), 1, - aux_sym_concatenation_repeat1, - ACTIONS(178), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(145), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [29771] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - ACTIONS(4040), 1, - anon_sym_LPAREN, - STATE(930), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1225), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [29832] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1298), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [29885] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3999), 1, - sym__special_character, - STATE(796), 1, - aux_sym__literal_repeat1, - ACTIONS(178), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(145), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [29942] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1268), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [29995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1268), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [30048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1310), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [30101] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1342), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [30154] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4042), 1, - aux_sym_concatenation_token1, - ACTIONS(4045), 1, - sym__concat, - STATE(836), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1258), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [30213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1294), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [30266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1272), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [30319] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1302), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [30372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1334), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [30425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1330), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [30478] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1314), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [30531] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1322), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [30584] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3922), 1, - aux_sym_concatenation_token1, - ACTIONS(3928), 1, - sym__concat, - STATE(767), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [30643] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1318), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [30696] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4048), 1, - aux_sym_concatenation_token1, - ACTIONS(4051), 1, - sym__concat, - STATE(846), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1258), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [30755] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1326), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [30808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1268), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [30861] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1268), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [30914] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1342), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [30967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1346), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [31020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1272), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [31073] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1334), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [31126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1330), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [31179] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(4054), 1, - sym__concat, - STATE(846), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1252), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [31238] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(4056), 1, - sym__concat, - STATE(846), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1246), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [31297] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(244), 1, - anon_sym_DQUOTE, - STATE(1482), 1, - sym_string, - ACTIONS(3723), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 32, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [31356] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(244), 1, - anon_sym_DQUOTE, - STATE(1482), 1, - sym_string, - ACTIONS(3723), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 32, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [31415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1322), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [31468] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1402), 1, - sym__special_character, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(4058), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(866), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3981), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3983), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31561] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1402), 1, - sym__special_character, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(4060), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(866), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3981), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3983), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31654] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4064), 1, - anon_sym_DQUOTE, - STATE(2126), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4062), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [31715] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4064), 1, - anon_sym_DQUOTE, - STATE(2126), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4062), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [31776] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1402), 1, - sym__special_character, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(4068), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(866), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3981), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3983), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31869] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1402), 1, - sym__special_character, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(4068), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(860), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(4070), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(4072), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [31962] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4074), 1, - sym_word, - ACTIONS(4086), 1, - anon_sym_LPAREN, - ACTIONS(4089), 1, - anon_sym_DOLLAR, - ACTIONS(4092), 1, - sym__special_character, - ACTIONS(4095), 1, - anon_sym_DQUOTE, - ACTIONS(4101), 1, - aux_sym_number_token1, - ACTIONS(4104), 1, - aux_sym_number_token2, - ACTIONS(4107), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4110), 1, - anon_sym_RBRACE3, - ACTIONS(4112), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4115), 1, - anon_sym_BQUOTE, - ACTIONS(4118), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4124), 1, - sym_test_operator, - ACTIONS(4127), 1, - sym__brace_start, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(4077), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4098), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4121), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(866), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(4080), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(4083), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32055] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(856), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1242), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [32114] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1402), 1, - sym__special_character, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(4130), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(866), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(3981), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(3983), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32207] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - sym_word, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1402), 1, - sym__special_character, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(4130), 1, - anon_sym_RBRACE3, - STATE(2262), 1, - aux_sym__literal_repeat1, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(861), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat2, - ACTIONS(4132), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_POUND, - ACTIONS(4134), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(2173), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1318), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [32352] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1314), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [32404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1242), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [32456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1284), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [32508] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1338), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [32560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1258), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [32612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1276), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [32664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1280), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [32716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1284), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [32768] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1298), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [32820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1338), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [32872] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1258), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [32924] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4136), 1, - aux_sym_concatenation_token1, - ACTIONS(4139), 1, - sym__concat, - STATE(882), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [32982] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4142), 1, - aux_sym_concatenation_token1, - ACTIONS(4144), 1, - sym__concat, - STATE(882), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1252), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [33040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1276), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [33092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1310), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [33144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1318), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [33196] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1280), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [33248] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4142), 1, - aux_sym_concatenation_token1, - ACTIONS(4146), 1, - sym__concat, - STATE(882), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1246), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [33306] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4148), 1, - aux_sym_concatenation_token1, - ACTIONS(4150), 1, - sym__concat, - STATE(897), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1246), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [33364] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(903), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [33422] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4148), 1, - aux_sym_concatenation_token1, - ACTIONS(4156), 1, - sym__concat, - STATE(897), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1252), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [33480] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(911), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [33538] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4142), 1, - aux_sym_concatenation_token1, - ACTIONS(4158), 1, - sym__concat, - STATE(888), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [33596] = 26, - ACTIONS(63), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(777), 1, - sym_test_operator, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3082), 1, - sym_word, - ACTIONS(4160), 1, - sym__special_character, - ACTIONS(4162), 1, - sym_variable_name, - STATE(464), 1, - sym_command_name, - STATE(1096), 1, - aux_sym__literal_repeat1, - STATE(1341), 1, - sym_concatenation, - STATE(4396), 1, - sym_subscript, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(775), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2295), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(778), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33694] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(911), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3783), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3781), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [33752] = 26, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1043), 1, - anon_sym_DOLLAR, - ACTIONS(1047), 1, - anon_sym_DQUOTE, - ACTIONS(1051), 1, - aux_sym_number_token1, - ACTIONS(1053), 1, - aux_sym_number_token2, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, - anon_sym_BQUOTE, - ACTIONS(1061), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1065), 1, - sym_test_operator, - ACTIONS(1069), 1, - sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3086), 1, - sym_word, - ACTIONS(3218), 1, - sym__special_character, - ACTIONS(4162), 1, - sym_variable_name, - STATE(615), 1, - sym_command_name, - STATE(1731), 1, - aux_sym__literal_repeat1, - STATE(1970), 1, - sym_concatenation, - STATE(4396), 1, - sym_subscript, - ACTIONS(1033), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1049), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1063), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2295), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(1544), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33850] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4164), 1, - aux_sym_concatenation_token1, - ACTIONS(4167), 1, - sym__concat, - STATE(897), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1258), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [33908] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(903), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3779), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3777), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [33966] = 26, - ACTIONS(63), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1089), 1, - sym_test_operator, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3134), 1, - sym_word, - ACTIONS(4162), 1, - sym_variable_name, - ACTIONS(4170), 1, - sym__special_character, - STATE(602), 1, - sym_command_name, - STATE(1096), 1, - aux_sym__literal_repeat1, - STATE(1341), 1, - sym_concatenation, - STATE(4396), 1, - sym_subscript, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1087), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2295), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(1407), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34064] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4172), 1, - sym__special_character, - STATE(904), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [34120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1294), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [34172] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(903), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [34230] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4174), 1, - sym__concat, - STATE(912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1246), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [34288] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4176), 1, - sym__special_character, - STATE(904), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1352), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [34344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1298), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [34396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1302), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [34448] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4179), 1, - sym__special_character, - STATE(965), 1, - aux_sym__literal_repeat1, - ACTIONS(3675), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3673), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [34504] = 26, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(49), 1, - aux_sym_number_token1, - ACTIONS(51), 1, - aux_sym_number_token2, - ACTIONS(53), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, - anon_sym_BQUOTE, - ACTIONS(59), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(65), 1, - sym_test_operator, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3122), 1, - sym_word, - ACTIONS(4162), 1, - sym_variable_name, - ACTIONS(4181), 1, - sym__special_character, - STATE(470), 1, - sym_command_name, - STATE(1104), 1, - aux_sym__literal_repeat1, - STATE(1275), 1, - sym_concatenation, - STATE(4396), 1, - sym_subscript, - ACTIONS(13), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(61), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2295), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(794), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1310), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [34654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1314), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [34706] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4183), 1, - sym__concat, - STATE(912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1252), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [34764] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4185), 1, - aux_sym_concatenation_token1, - ACTIONS(4188), 1, - sym__concat, - STATE(912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1258), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [34822] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4148), 1, - aux_sym_concatenation_token1, - ACTIONS(4191), 1, - sym__concat, - STATE(891), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3985), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [34880] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4148), 1, - aux_sym_concatenation_token1, - ACTIONS(4191), 1, - sym__concat, - STATE(889), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3989), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [34938] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4193), 1, - aux_sym_concatenation_token1, - ACTIONS(4195), 1, - sym__concat, - STATE(939), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [34996] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4148), 1, - aux_sym_concatenation_token1, - ACTIONS(4191), 1, - sym__concat, - STATE(889), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1294), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [35106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1326), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35158] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4193), 1, - aux_sym_concatenation_token1, - ACTIONS(4195), 1, - sym__concat, - STATE(937), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1302), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [35268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1268), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35320] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1268), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1314), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [35424] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4179), 1, - sym__special_character, - STATE(965), 1, - aux_sym__literal_repeat1, - ACTIONS(3665), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3663), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35480] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(4197), 1, - sym__concat, - STATE(846), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1246), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35538] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1284), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1342), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35642] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1294), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35694] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1346), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35746] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(4199), 1, - sym__concat, - STATE(846), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1252), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35804] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1314), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35856] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(925), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1242), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [35914] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4201), 1, - aux_sym_concatenation_token1, - ACTIONS(4203), 1, - sym__concat, - STATE(992), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4034), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4032), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [35972] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(925), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3675), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3673), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [36030] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(930), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3685), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3683), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [36088] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4201), 1, - aux_sym_concatenation_token1, - ACTIONS(4203), 1, - sym__concat, - STATE(993), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4038), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4036), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [36146] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4193), 1, - aux_sym_concatenation_token1, - ACTIONS(4205), 1, - sym__concat, - STATE(948), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1246), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [36204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1322), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [36256] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4193), 1, - aux_sym_concatenation_token1, - ACTIONS(4207), 1, - sym__concat, - STATE(948), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1252), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [36314] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4179), 1, - sym__special_character, - STATE(965), 1, - aux_sym__literal_repeat1, - ACTIONS(178), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(145), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [36370] = 26, - ACTIONS(63), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_DOLLAR, - ACTIONS(566), 1, - anon_sym_DQUOTE, - ACTIONS(570), 1, - aux_sym_number_token1, - ACTIONS(572), 1, - aux_sym_number_token2, - ACTIONS(574), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(576), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(578), 1, - anon_sym_BQUOTE, - ACTIONS(580), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(584), 1, - sym_test_operator, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3078), 1, - sym_word, - ACTIONS(4162), 1, - sym_variable_name, - ACTIONS(4209), 1, - sym__special_character, - STATE(452), 1, - sym_command_name, - STATE(940), 1, - aux_sym__literal_repeat1, - STATE(1200), 1, - sym_concatenation, - STATE(4396), 1, - sym_subscript, - ACTIONS(546), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(568), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(582), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2295), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(734), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36468] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4193), 1, - aux_sym_concatenation_token1, - ACTIONS(4195), 1, - sym__concat, - STATE(939), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3985), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [36526] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4193), 1, - aux_sym_concatenation_token1, - ACTIONS(4195), 1, - sym__concat, - STATE(937), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3989), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [36584] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(925), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3665), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3663), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [36642] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(930), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3661), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3659), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [36700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1280), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [36752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1322), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [36804] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, - aux_sym_concatenation_token1, - ACTIONS(4214), 1, - sym__concat, - STATE(948), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1258), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [36862] = 26, - ACTIONS(63), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(382), 1, - sym_test_operator, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3084), 1, - sym_word, - ACTIONS(4162), 1, - sym_variable_name, - ACTIONS(4217), 1, - sym__special_character, - STATE(509), 1, - sym_command_name, - STATE(1096), 1, - aux_sym__literal_repeat1, - STATE(1341), 1, - sym_concatenation, - STATE(4396), 1, - sym_subscript, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(366), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2295), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(959), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3683), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [37012] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1330), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [37064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1334), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [37116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1322), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [37168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1330), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [37220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1298), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [37272] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1318), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [37324] = 26, - ACTIONS(63), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(382), 1, - sym_test_operator, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3084), 1, - sym_word, - ACTIONS(4162), 1, - sym_variable_name, - ACTIONS(4217), 1, - sym__special_character, - STATE(494), 1, - sym_command_name, - STATE(1096), 1, - aux_sym__literal_repeat1, - STATE(1341), 1, - sym_concatenation, - STATE(4396), 1, - sym_subscript, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(366), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2295), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(959), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37422] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(925), 1, - aux_sym_concatenation_repeat1, - ACTIONS(178), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(145), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [37480] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(930), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1225), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [37538] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1284), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [37590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1326), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [37642] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1272), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [37694] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4142), 1, - aux_sym_concatenation_token1, - ACTIONS(4158), 1, - sym__concat, - STATE(888), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3841), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [37752] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4142), 1, - aux_sym_concatenation_token1, - ACTIONS(4158), 1, - sym__concat, - STATE(883), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3837), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [37810] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4219), 1, - sym__special_character, - STATE(965), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1352), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [37866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1338), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [37918] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1258), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [37970] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1338), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [38022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1258), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [38074] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1334), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [38126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1272), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [38178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1302), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [38230] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1334), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [38282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3661), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3659), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [38334] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1272), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [38386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1268), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [38438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1268), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [38490] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1276), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [38542] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1330), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [38594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1326), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [38646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1268), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [38698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1346), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [38750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1342), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [38802] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1268), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [38854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1276), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [38906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1322), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [38958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1280), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [39010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1346), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [39062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1342), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [39114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1346), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [39166] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1342), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [39218] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4201), 1, - aux_sym_concatenation_token1, - ACTIONS(4222), 1, - sym__concat, - STATE(1004), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1246), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [39276] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4201), 1, - aux_sym_concatenation_token1, - ACTIONS(4224), 1, - sym__concat, - STATE(1004), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1252), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [39334] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1268), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [39386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1310), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [39438] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4172), 1, - sym__special_character, - STATE(904), 1, - aux_sym__literal_repeat1, - ACTIONS(3779), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3777), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [39494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1268), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [39546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1326), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [39598] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4142), 1, - aux_sym_concatenation_token1, - ACTIONS(4158), 1, - sym__concat, - STATE(883), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3783), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3781), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [39656] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4142), 1, - aux_sym_concatenation_token1, - ACTIONS(4158), 1, - sym__concat, - STATE(888), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3779), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3777), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [39714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1318), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [39766] = 26, - ACTIONS(63), 1, - sym_comment, - ACTIONS(442), 1, - anon_sym_DOLLAR, - ACTIONS(446), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - aux_sym_number_token1, - ACTIONS(452), 1, - aux_sym_number_token2, - ACTIONS(454), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(456), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(458), 1, - anon_sym_BQUOTE, - ACTIONS(460), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(464), 1, - sym_test_operator, - ACTIONS(470), 1, - sym__brace_start, - ACTIONS(1449), 1, - sym_file_descriptor, - ACTIONS(3080), 1, - sym_word, - ACTIONS(4162), 1, - sym_variable_name, - ACTIONS(4226), 1, - sym__special_character, - STATE(448), 1, - sym_command_name, - STATE(831), 1, - aux_sym__literal_repeat1, - STATE(1003), 1, - sym_concatenation, - STATE(4396), 1, - sym_subscript, - ACTIONS(406), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(448), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(462), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1447), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2295), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(1445), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(665), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [39864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1225), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [39916] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4228), 1, - aux_sym_concatenation_token1, - ACTIONS(4231), 1, - sym__concat, - STATE(1004), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1258), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [39974] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1310), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [40026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1342), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [40078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1346), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [40130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1284), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [40182] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1294), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [40234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1326), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [40286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1272), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [40338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1314), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [40390] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4193), 1, - aux_sym_concatenation_token1, - ACTIONS(4195), 1, - sym__concat, - STATE(937), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [40448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1272), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [40500] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1280), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [40552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1298), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [40604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1334), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [40656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1330), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [40708] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1310), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [40760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1322), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [40812] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1298), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [40864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1338), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [40916] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [40968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1302), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [41020] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4201), 1, - aux_sym_concatenation_token1, - ACTIONS(4203), 1, - sym__concat, - STATE(992), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [41078] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4238), 1, - anon_sym_RPAREN, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4242), 1, - sym__special_character, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2348), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3946), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_RBRACE3, - ACTIONS(3948), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [41168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1294), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [41220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1302), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [41272] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1334), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [41324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1330), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [41376] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1318), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [41428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [41480] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [41532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1276), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [41584] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1268), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [41635] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [41686] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4266), 1, - aux_sym_concatenation_token1, - ACTIONS(4269), 1, - sym__concat, - STATE(1037), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1258), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [41743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1268), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [41794] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1268), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [41845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1314), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [41896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1276), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [41947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1342), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [41998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1302), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [42049] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_variable_name, - STATE(4367), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4272), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(3169), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3221), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [42112] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1294), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [42163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1272), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [42214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1284), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [42265] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1294), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [42316] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4277), 1, - sym__special_character, - STATE(1049), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1352), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [42371] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1298), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [42422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1284), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [42473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1302), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [42524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [42575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1334), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [42626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1330), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [42677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1310), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [42728] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1314), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [42779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1322), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [42830] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4280), 1, - sym__special_character, - STATE(1061), 1, - aux_sym__literal_repeat1, - ACTIONS(3665), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3663), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [42885] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [42936] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4282), 1, - sym__special_character, - STATE(1061), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1352), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [42991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1346), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [43042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1338), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [43093] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4285), 1, - aux_sym_concatenation_token1, - ACTIONS(4287), 1, - sym__concat, - STATE(1037), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1246), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [43150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [43201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1298), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [43252] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4285), 1, - aux_sym_concatenation_token1, - ACTIONS(4289), 1, - sym__concat, - STATE(1037), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1252), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [43309] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4291), 1, - sym__special_character, - STATE(1068), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1352), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [43364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1276), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [43415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1310), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [43466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1338), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [43517] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4294), 1, - aux_sym_concatenation_token1, - ACTIONS(4296), 1, - sym__concat, - STATE(1147), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3837), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [43574] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4294), 1, - aux_sym_concatenation_token1, - ACTIONS(4296), 1, - sym__concat, - STATE(1145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [43631] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4294), 1, - aux_sym_concatenation_token1, - ACTIONS(4296), 1, - sym__concat, - STATE(1145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3841), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [43688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1280), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [43739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1280), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [43790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1326), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [43841] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4298), 1, - aux_sym_concatenation_token1, - ACTIONS(4300), 1, - sym__concat, - STATE(1101), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [43898] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4280), 1, - sym__special_character, - STATE(1061), 1, - aux_sym__literal_repeat1, - ACTIONS(3675), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3673), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [43953] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4298), 1, - aux_sym_concatenation_token1, - ACTIONS(4300), 1, - sym__concat, - STATE(1101), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4034), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4032), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [44010] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4285), 1, - aux_sym_concatenation_token1, - ACTIONS(4302), 1, - sym__concat, - STATE(1064), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [44067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1318), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [44118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1294), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [44169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1318), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [44220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1326), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [44271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1302), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [44322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1268), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [44373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1268), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [44424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1314), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [44475] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_variable_name, - ACTIONS(4306), 1, - anon_sym_LF, - ACTIONS(4308), 1, - anon_sym_LT_LT_LT, - STATE(4367), 1, - sym_subscript, - ACTIONS(3248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4272), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4304), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(3169), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3221), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [44544] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4298), 1, - aux_sym_concatenation_token1, - ACTIONS(4300), 1, - sym__concat, - STATE(1102), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4038), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4036), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [44601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1342), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [44652] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1346), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [44703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1258), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [44754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1342), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [44805] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4310), 1, - sym__special_character, - STATE(1186), 1, - aux_sym__literal_repeat1, - ACTIONS(178), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(145), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [44860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1258), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [44911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1346), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [44962] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1338), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [45013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1298), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [45064] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4298), 1, - aux_sym_concatenation_token1, - ACTIONS(4312), 1, - sym__concat, - STATE(1110), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1246), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [45121] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4298), 1, - aux_sym_concatenation_token1, - ACTIONS(4314), 1, - sym__concat, - STATE(1110), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1252), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [45178] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4316), 1, - sym__special_character, - STATE(1149), 1, - aux_sym__literal_repeat1, - ACTIONS(4034), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4032), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [45233] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4280), 1, - sym__special_character, - STATE(1061), 1, - aux_sym__literal_repeat1, - ACTIONS(178), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(145), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [45288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1284), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [45339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1326), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [45390] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1318), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [45441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1318), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [45492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1272), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [45543] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 1, - aux_sym_concatenation_token1, - ACTIONS(4321), 1, - sym__concat, - STATE(1110), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [45600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1334), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [45651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1326), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [45702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1272), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [45753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1334), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [45804] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1330), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [45855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1330), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [45906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1310), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [45957] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1268), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [46008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1322), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1322), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [46110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1342), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [46161] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1127), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3985), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46218] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1346), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [46269] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1126), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3989), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46326] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1126), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46383] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4328), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1246), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46440] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4330), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1252), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46497] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4294), 1, - aux_sym_concatenation_token1, - ACTIONS(4296), 1, - sym__concat, - STATE(1145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3989), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46554] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4294), 1, - aux_sym_concatenation_token1, - ACTIONS(4296), 1, - sym__concat, - STATE(1147), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3985), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46611] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4332), 1, - sym__special_character, - STATE(1068), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46666] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4334), 1, - aux_sym_concatenation_token1, - ACTIONS(4337), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1258), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1242), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46774] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1276), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1280), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [46876] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1165), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4038), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4036), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [46933] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1159), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4034), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4032), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [46990] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [47041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1272), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [47092] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4310), 1, - sym__special_character, - STATE(1186), 1, - aux_sym__literal_repeat1, - ACTIONS(3675), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3673), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [47147] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4332), 1, - sym__special_character, - STATE(1068), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3989), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [47202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1334), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [47253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1330), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [47304] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1322), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [47355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1284), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [47406] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4294), 1, - aux_sym_concatenation_token1, - ACTIONS(4344), 1, - sym__concat, - STATE(1202), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1246), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [47463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3683), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [47514] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4294), 1, - aux_sym_concatenation_token1, - ACTIONS(4346), 1, - sym__concat, - STATE(1202), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1252), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [47571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1280), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [47622] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4348), 1, - sym__special_character, - STATE(1149), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1352), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [47677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1338), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [47728] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1258), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [47779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1298), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [47830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1276), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [47881] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4310), 1, - sym__special_character, - STATE(1186), 1, - aux_sym__literal_repeat1, - ACTIONS(3665), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3663), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [47936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1280), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [47987] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1159), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1322), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1310), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [48146] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4351), 1, - sym__concat, - STATE(1185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1246), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1314), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [48254] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1294), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1330), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1334), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1272), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48458] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4353), 1, - sym__concat, - STATE(1185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1252), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48515] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1127), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [48572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1346), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48623] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1342), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48674] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1126), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [48731] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1268), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1268), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1276), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [48884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1326), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48935] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1181), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3783), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3781), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [48992] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4355), 1, - sym__concat, - STATE(912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1246), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [49049] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1175), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3779), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3777), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [49106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1302), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [49157] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4285), 1, - aux_sym_concatenation_token1, - ACTIONS(4302), 1, - sym__concat, - STATE(1064), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3989), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [49214] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4285), 1, - aux_sym_concatenation_token1, - ACTIONS(4302), 1, - sym__concat, - STATE(1067), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3985), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [49271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1318), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [49322] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4357), 1, - sym__concat, - STATE(912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1252), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [49379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1298), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [49430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3661), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3659), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [49481] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3248), 1, - sym__brace_start, - ACTIONS(3306), 1, - sym_file_descriptor, - ACTIONS(4274), 1, - sym_variable_name, - STATE(4367), 1, - sym_subscript, - STATE(3169), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3221), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [49544] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4359), 1, - aux_sym_concatenation_token1, - ACTIONS(4362), 1, - sym__concat, - STATE(1185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1258), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [49601] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4365), 1, - sym__special_character, - STATE(1186), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1352), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [49656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1302), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [49707] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1181), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [49764] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1175), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [49821] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1284), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [49872] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1294), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [49923] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4368), 1, - sym__special_character, - STATE(1049), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [49978] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4368), 1, - sym__special_character, - STATE(1049), 1, - aux_sym__literal_repeat1, - ACTIONS(3779), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3777), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [50033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4370), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [50084] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1175), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [50141] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1310), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [50192] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1314), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [50243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1338), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [50294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4376), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4374), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [50345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1225), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [50396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1258), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [50447] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4378), 1, - aux_sym_concatenation_token1, - ACTIONS(4381), 1, - sym__concat, - STATE(1202), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [50504] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1298), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [50554] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4384), 1, - sym__special_character, - STATE(1345), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3989), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [50608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [50658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1338), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [50708] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1342), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [50758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1346), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [50808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1280), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [50858] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1218), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [50914] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1217), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [50970] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4386), 1, - aux_sym_concatenation_token1, - ACTIONS(4388), 1, - sym__concat, - STATE(1310), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3985), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [51026] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4386), 1, - aux_sym_concatenation_token1, - ACTIONS(4388), 1, - sym__concat, - STATE(1303), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3989), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [51082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1294), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [51132] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1272), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [51182] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4392), 1, - sym_file_descriptor, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(4390), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [51236] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4394), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1246), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [51292] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4396), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1252), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [51348] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1239), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [51404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1276), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [51454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1268), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [51504] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [51554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1298), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [51604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1302), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [51654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1334), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [51704] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4398), 1, - sym__special_character, - STATE(1350), 1, - aux_sym__literal_repeat1, - ACTIONS(4034), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4032), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [51758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1330), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [51808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1268), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [51858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1310), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [51908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1314), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [51958] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4400), 1, - sym__concat, - STATE(1185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1252), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [52014] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1258), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [52064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1272), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [52114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1326), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [52164] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1338), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [52214] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1239), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4034), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4032), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [52270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1322), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [52320] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1298), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [52370] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4402), 1, - sym__concat, - STATE(1185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1246), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [52426] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4384), 1, - sym__special_character, - STATE(1345), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [52480] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1346), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [52530] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1231), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4038), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4036), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [52586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [52636] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [52686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1342), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [52736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1318), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [52786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1276), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [52836] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4404), 1, - sym__special_character, - STATE(1248), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1352), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [52890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1326), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [52940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1326), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [52990] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1268), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [53040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1268), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [53090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1284), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [53140] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4407), 1, - sym__special_character, - STATE(1248), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3989), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [53194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4370), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [53244] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1217), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [53300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1318), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [53350] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4376), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4374), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [53400] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1342), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [53450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1346), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [53500] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4376), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4374), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [53550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4370), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [53600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1272), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [53650] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1334), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [53700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3661), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3659), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [53750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1330), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [53800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1322), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [53850] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4409), 1, - sym__special_character, - STATE(1268), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1352), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [53904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1322), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [53954] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1217), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3989), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1330), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54060] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1294), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1334), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [54210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1234), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1225), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1284), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54310] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1272), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3683), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1258), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1314), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54510] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1353), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1242), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54616] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - ACTIONS(4416), 1, - anon_sym_LPAREN, - STATE(1393), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1225), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54674] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1302), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54724] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1346), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54774] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1342), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54824] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1218), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3985), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54880] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1294), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54930] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4418), 1, - sym__special_character, - STATE(1268), 1, - aux_sym__literal_repeat1, - ACTIONS(3779), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3777), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [54984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1268), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [55034] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 14, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [55090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1280), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [55140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1276), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [55190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1268), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [55240] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - sym__special_character, - STATE(1361), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3841), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [55294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1258), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [55344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1338), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [55394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1310), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [55444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [55494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1334), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [55544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1326), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [55594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1284), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [55644] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4386), 1, - aux_sym_concatenation_token1, - ACTIONS(4430), 1, - sym__concat, - STATE(1311), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1246), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [55700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1322), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [55750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1330), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [55800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1334), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [55850] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1272), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [55900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1326), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [55950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1346), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [56000] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4386), 1, - aux_sym_concatenation_token1, - ACTIONS(4432), 1, - sym__concat, - STATE(1311), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1252), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [56056] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4434), 1, - aux_sym_concatenation_token1, - ACTIONS(4437), 1, - sym__concat, - STATE(1311), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [56112] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1342), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [56162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1318), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [56212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1280), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [56262] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1318), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [56312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1314), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [56362] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1310), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [56412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1276), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [56462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [56512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [56562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1330), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [56612] = 11, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3312), 1, - anon_sym_LT_LT, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_PIPE_AMP, - ACTIONS(4444), 1, - sym_variable_name, - STATE(4379), 1, - sym_subscript, - STATE(3289), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(3477), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - STATE(3345), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3248), 19, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [56678] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1302), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [56728] = 9, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4444), 1, - sym_variable_name, - STATE(4379), 1, - sym_subscript, - STATE(3289), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3345), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3304), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3306), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(3248), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [56790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [56840] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1338), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [56890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1298), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [56940] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_PIPE_AMP, - ACTIONS(4444), 1, - sym_variable_name, - ACTIONS(4449), 1, - anon_sym_LT_LT, - ACTIONS(4451), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4453), 1, - anon_sym_LT_LT_LT, - STATE(4379), 1, - sym_subscript, - ACTIONS(4447), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(3289), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(3215), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3236), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3248), 19, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [57010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1314), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57060] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1280), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1294), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [57160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1310), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1284), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [57260] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4386), 1, - aux_sym_concatenation_token1, - ACTIONS(4388), 1, - sym__concat, - STATE(1303), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1302), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57366] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - sym__special_character, - STATE(1361), 1, - aux_sym__literal_repeat1, - ACTIONS(3779), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3777), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [57420] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1353), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3989), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1294), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57526] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1354), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3985), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1314), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57632] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1225), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57682] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3683), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1338), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1302), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57832] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4455), 1, - sym__special_character, - STATE(1345), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1352), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57886] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1310), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [57986] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4418), 1, - sym__special_character, - STATE(1268), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [58040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1298), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58090] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4458), 1, - sym__special_character, - STATE(1350), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1352), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [58144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1284), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58244] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4461), 1, - sym__concat, - STATE(1356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1246), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58300] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4463), 1, - sym__concat, - STATE(1356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1252), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1318), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58406] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4465), 1, - aux_sym_concatenation_token1, - ACTIONS(4468), 1, - sym__concat, - STATE(1356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1258), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [58512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3661), 4, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3659), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1280), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1322), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58662] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4471), 1, - sym__special_character, - STATE(1361), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1352), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [58716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1276), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1276), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1272), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58864] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 13, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58919] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(1392), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1242), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [58974] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [59023] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59072] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(1392), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3675), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3673), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59127] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4474), 1, - sym__special_character, - STATE(1419), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4370), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [59229] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4476), 1, - sym__special_character, - STATE(1372), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1352), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [59282] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4479), 1, - sym__special_character, - STATE(1373), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1352), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [59384] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1383), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3985), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59439] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [59488] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(1393), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3685), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3683), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59543] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(1392), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3665), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3663), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59598] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1384), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3989), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59653] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1097), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1244), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [59706] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1384), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59761] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(1393), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3661), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(3659), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59816] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4482), 1, - sym__concat, - STATE(1356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1252), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59871] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4484), 1, - sym__concat, - STATE(1356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1246), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4376), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4374), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [59975] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4486), 1, - sym__special_character, - STATE(1415), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3989), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60028] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1369), 1, - anon_sym_LPAREN, - STATE(1524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1225), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1234), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [60083] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4370), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60132] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4376), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4374), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60181] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4490), 1, - sym__special_character, - STATE(1372), 1, - aux_sym__literal_repeat1, - ACTIONS(4034), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4032), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [60234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1322), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60283] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(4492), 1, - sym__concat, - STATE(846), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1246), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60338] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(4494), 1, - sym__concat, - STATE(846), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1252), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3837), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [60442] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1284), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1338), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60540] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(1392), 1, - aux_sym_concatenation_repeat1, - ACTIONS(178), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(145), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60595] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1330), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60644] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1258), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60693] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1280), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60742] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1294), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1298), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60840] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1302), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, - sym__special_character, - STATE(1404), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1352), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [60942] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1310), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [60991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1334), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61040] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_concatenation_token1, - ACTIONS(3735), 1, - sym__concat, - STATE(1393), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1234), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1225), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61095] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4392), 1, - sym_file_descriptor, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(4390), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [61148] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1314), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61197] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1272), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1346), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1342), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61344] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym__brace_start, - ACTIONS(4501), 1, - anon_sym_DQUOTE, - STATE(2238), 1, - sym_string, - ACTIONS(4503), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4499), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 27, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61401] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym__brace_start, - ACTIONS(4501), 1, - anon_sym_DQUOTE, - STATE(2238), 1, - sym_string, - ACTIONS(4503), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4499), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 27, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61458] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4505), 1, - sym__special_character, - STATE(1415), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1352), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61511] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4508), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1263), 25, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [61564] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1268), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1268), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61662] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4511), 1, - sym__special_character, - STATE(1419), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1352), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61715] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1318), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61764] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4514), 1, - sym__special_character, - STATE(1404), 1, - aux_sym__literal_repeat1, - ACTIONS(4034), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4032), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [61817] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1326), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [61915] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [61964] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1326), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1268), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62111] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1318), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1342), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1346), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62258] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1284), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4376), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4374), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [62356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1338), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4370), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [62454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1258), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1334), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1314), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62601] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4516), 1, - sym__special_character, - STATE(1373), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3989), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1330), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1302), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1276), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1322), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62850] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4474), 1, - sym__special_character, - STATE(1419), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3989), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1294), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [62952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1280), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [63001] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4516), 1, - sym__special_character, - STATE(1373), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3841), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [63054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [63103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1298), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [63152] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1310), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [63201] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4518), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [63257] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4376), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4374), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [63305] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4521), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [63361] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4524), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [63417] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3837), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [63465] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4527), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [63521] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4530), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [63577] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4370), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [63625] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1606), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1097), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1244), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [63677] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1525), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3673), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3675), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [63729] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3683), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3685), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [63781] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4392), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(4390), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [63833] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4533), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [63889] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4536), 1, - sym_word, - ACTIONS(4542), 1, - anon_sym_DOLLAR, - ACTIONS(4545), 1, - sym__special_character, - ACTIONS(4548), 1, - anon_sym_DQUOTE, - ACTIONS(4554), 1, - aux_sym_number_token1, - ACTIONS(4557), 1, - aux_sym_number_token2, - ACTIONS(4560), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4566), 1, - anon_sym_BQUOTE, - ACTIONS(4569), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4575), 1, - sym_test_operator, - ACTIONS(4578), 1, - sym__brace_start, - STATE(2495), 1, - aux_sym__literal_repeat1, - ACTIONS(4539), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4551), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4572), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1463), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2059), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2094), 7, - sym_file_descriptor, - sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(2368), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [63973] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4581), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [64029] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4584), 1, - sym__special_character, - STATE(1465), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1352), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [64081] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4587), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [64137] = 6, - ACTIONS(63), 1, - sym_comment, - STATE(2495), 1, - aux_sym__literal_repeat1, - STATE(1463), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2049), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - STATE(2368), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2051), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [64191] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [64239] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4590), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [64295] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1470), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4593), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1263), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [64347] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1525), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3663), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3665), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [64399] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1123), 1, - aux_sym_concatenation_token1, - STATE(1594), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1242), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - sym__special_character, - ACTIONS(1244), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [64451] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1296), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [64499] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4596), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [64555] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3659), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3661), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [64607] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4599), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [64663] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4602), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [64719] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4605), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [64775] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4608), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [64831] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1300), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [64879] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4611), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [64935] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1286), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [64983] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4614), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65039] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4392), 1, - sym_file_descriptor, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(4390), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [65091] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1340), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [65139] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65187] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65235] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1263), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [65283] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4617), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65339] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4620), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65395] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1304), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [65443] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4623), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65499] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4626), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65555] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4629), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65611] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4370), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65659] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4632), 1, - sym__special_character, - STATE(1496), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1352), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65711] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1706), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1244), 24, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym__special_character, - sym_test_operator, - [65763] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4635), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65819] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4638), 1, - ts_builtin_sym_end, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65875] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4640), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65931] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4643), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [66035] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4646), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [66091] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1270), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [66139] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1270), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [66187] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1278), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [66235] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1572), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [66289] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4649), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [66345] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4652), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [66401] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4655), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [66457] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1312), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [66505] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4658), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [66561] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1626), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1244), 24, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [66613] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4661), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [66669] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1572), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [66723] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4664), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [66779] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1565), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [66833] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1525), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1244), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [66885] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4667), 1, - sym__special_character, - STATE(1465), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3989), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [66937] = 6, - ACTIONS(63), 1, - sym_comment, - STATE(2495), 1, - aux_sym__literal_repeat1, - STATE(1463), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2045), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - STATE(2368), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2047), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [66991] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1521), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4669), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [67043] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1316), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [67091] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4672), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [67147] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4488), 1, - aux_sym_concatenation_token1, - ACTIONS(4675), 1, - sym__concat, - STATE(1521), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [67201] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4488), 1, - aux_sym_concatenation_token1, - ACTIONS(4677), 1, - sym__concat, - STATE(1521), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1248), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [67255] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4679), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [67311] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1648), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1123), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - sym__special_character, - ACTIONS(1244), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [67363] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1320), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [67411] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4682), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [67467] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1572), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3779), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3777), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [67521] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4685), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [67577] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1619), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - sym__special_character, - ACTIONS(1244), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [67629] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4154), 1, - sym__concat, - STATE(1565), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3783), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3781), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [67683] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4688), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [67739] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4691), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [67795] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4694), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [67851] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1282), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [67899] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4697), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [67955] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1525), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(145), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(178), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [68007] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4700), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [68063] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4703), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [68119] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1324), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [68167] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4706), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [68223] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4488), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1225), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1234), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [68275] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1332), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [68323] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1097), 1, - aux_sym_concatenation_token1, - ACTIONS(4709), 1, - sym__concat, - STATE(1470), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1248), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [68377] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1097), 1, - aux_sym_concatenation_token1, - ACTIONS(4711), 1, - sym__concat, - STATE(1470), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1254), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [68431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4376), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4374), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [68479] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4713), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [68535] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4716), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [68591] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1336), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [68639] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4719), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [68695] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4722), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [68751] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4725), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [68807] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4728), 1, - sym__special_character, - STATE(1496), 1, - aux_sym__literal_repeat1, - ACTIONS(3991), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3989), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [68859] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4730), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [68915] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1547), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1097), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1227), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [68967] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1274), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [69015] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4733), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [69071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [69119] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1328), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [69167] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4736), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [69223] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4739), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [69279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [69327] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4742), 1, - sym__concat, - STATE(912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1252), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [69381] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1348), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [69429] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4744), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [69485] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4747), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [69541] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1344), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [69589] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 12, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [69643] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(4750), 1, - anon_sym_RPAREN, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [69699] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_concatenation_token1, - ACTIONS(4753), 1, - sym__concat, - STATE(912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1246), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [69753] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1596), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4038), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4036), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [69806] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1113), 1, - sym_word, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(1129), 1, - sym_test_operator, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(4759), 1, - sym__regex_no_space, - STATE(1641), 1, - aux_sym__literal_repeat1, - STATE(1929), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1127), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1978), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1584), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [69895] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1926), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1244), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [69946] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1662), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1242), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [69999] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1662), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3841), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [70052] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1660), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3837), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [70105] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1662), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3989), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [70158] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4326), 1, - sym__concat, - STATE(1660), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3985), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [70211] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1695), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4761), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3837), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(3839), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [70262] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1696), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4761), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3841), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(3843), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [70313] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1668), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [70364] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1123), 1, - aux_sym_concatenation_token1, - STATE(1595), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [70415] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1133), 1, - anon_sym_RBRACK, - ACTIONS(4763), 1, - sym__special_character, - ACTIONS(4765), 1, - sym__concat, - STATE(1600), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(600), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [70470] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4767), 1, - sym__special_character, - STATE(1664), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(600), 24, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [70521] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1123), 1, - aux_sym_concatenation_token1, - ACTIONS(4769), 1, - anon_sym_RBRACK, - ACTIONS(4771), 1, - sym__concat, - STATE(1595), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [70576] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1695), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4761), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3781), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(3783), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [70627] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1696), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4761), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3777), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(3779), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [70678] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4777), 1, - anon_sym_LBRACK, - ACTIONS(4775), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4773), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [70727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [70774] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4781), 1, - sym__regex_no_space, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2080), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [70863] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1630), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [70914] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1123), 1, - aux_sym_concatenation_token1, - ACTIONS(4783), 1, - sym__concat, - STATE(1602), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1248), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [70967] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1123), 1, - aux_sym_concatenation_token1, - ACTIONS(4785), 1, - sym__concat, - STATE(1602), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1254), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [71020] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4787), 1, - sym__concat, - STATE(1185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1252), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [71073] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4789), 1, - sym__concat, - STATE(1185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1246), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [71126] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4791), 1, - sym__special_character, - STATE(1598), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1357), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [71177] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1612), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [71228] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4794), 1, - sym__special_character, - STATE(1600), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1357), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [71279] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4801), 1, - sym__concat, - ACTIONS(4799), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4797), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [71328] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1602), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4803), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1263), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [71379] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1123), 1, - aux_sym_concatenation_token1, - ACTIONS(4806), 1, - anon_sym_RBRACK, - ACTIONS(4808), 1, - sym__concat, - STATE(1595), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [71434] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1183), 1, - anon_sym_RBRACK, - ACTIONS(4763), 1, - sym__special_character, - ACTIONS(4810), 1, - sym__concat, - STATE(1600), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(600), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [71489] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1286), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [71536] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1097), 1, - aux_sym_concatenation_token1, - ACTIONS(4812), 1, - sym__concat, - STATE(1470), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1248), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [71589] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1097), 1, - aux_sym_concatenation_token1, - ACTIONS(4814), 1, - sym__concat, - STATE(1470), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1254), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [71642] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, - anon_sym_esac, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4583), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2237), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4820), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [71731] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4854), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4866), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2191), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4852), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [71820] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1340), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [71867] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1263), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [71914] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1155), 1, - aux_sym_concatenation_token1, - ACTIONS(4856), 1, - sym__concat, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1254), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [71967] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1193), 1, - sym_word, - ACTIONS(1195), 1, - anon_sym_BANG, - ACTIONS(1197), 1, - aux_sym_unary_expression_token1, - ACTIONS(1199), 1, - sym__special_character, - ACTIONS(1203), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4858), 1, - sym__regex_no_space, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(1629), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1201), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1711), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72056] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1278), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [72103] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(302), 1, - aux_sym_unary_expression_token1, - ACTIONS(596), 1, - sym_word, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(607), 1, - anon_sym_BANG, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(633), 1, - sym_test_operator, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(4860), 1, - sym__special_character, - ACTIONS(4862), 1, - sym__regex_no_space, - STATE(1923), 1, - aux_sym__literal_repeat1, - STATE(2093), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(617), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2073), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1635), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72192] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1282), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [72239] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4868), 1, - sym__concat, - ACTIONS(4866), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4864), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [72288] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - sym_file_descriptor, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(4422), 9, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_BQUOTE, - ACTIONS(4420), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3236), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [72341] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1155), 1, - aux_sym_concatenation_token1, - ACTIONS(4870), 1, - sym__concat, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1248), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [72394] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1694), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4872), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3985), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3987), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [72445] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4876), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4419), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2214), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4874), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72534] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1692), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4872), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3989), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3991), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [72585] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1227), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [72632] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1324), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [72679] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1300), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [72726] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1155), 1, - aux_sym_concatenation_token1, - ACTIONS(4878), 1, - sym__concat, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1248), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [72779] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4882), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4422), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2210), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4880), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72868] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4886), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4884), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [72915] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4886), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4884), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [72962] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1155), 1, - aux_sym_concatenation_token1, - ACTIONS(4888), 1, - sym__concat, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1254), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [73015] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1332), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [73062] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [73109] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4892), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4890), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [73156] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1312), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [73203] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1651), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1123), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [73254] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4894), 1, - sym__special_character, - STATE(1598), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(600), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [73305] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1607), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1097), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [73356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [73403] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [73450] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4898), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4896), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [73497] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4763), 1, - sym__special_character, - STATE(1600), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(600), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [73548] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(131), 1, - aux_sym_unary_expression_token1, - ACTIONS(139), 1, - sym_word, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(152), 1, - anon_sym_BANG, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1141), 1, - sym__special_character, - ACTIONS(1145), 1, - sym_test_operator, - ACTIONS(4858), 1, - sym__regex_no_space, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1629), 1, - sym__expression, - STATE(1636), 1, - aux_sym__literal_repeat1, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1143), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1637), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [73637] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4858), 1, - sym__regex_no_space, - ACTIONS(4902), 1, - sym__special_character, - STATE(1629), 1, - sym__expression, - STATE(1831), 1, - aux_sym__literal_repeat1, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [73726] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [73773] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [73820] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [73867] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [73914] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1123), 1, - aux_sym_concatenation_token1, - ACTIONS(4904), 1, - sym__concat, - STATE(1602), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1248), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [73967] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1296), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [74014] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4908), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4434), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2202), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4906), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [74103] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1123), 1, - aux_sym_concatenation_token1, - ACTIONS(4910), 1, - sym__concat, - STATE(1602), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1254), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [74156] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4914), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4435), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2195), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4912), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [74245] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1304), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [74292] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [74339] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1119), 1, - anon_sym_RBRACK, - ACTIONS(4763), 1, - sym__special_character, - ACTIONS(4916), 1, - sym__concat, - STATE(1600), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(600), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [74394] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [74447] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1123), 1, - aux_sym_concatenation_token1, - ACTIONS(4918), 1, - anon_sym_RBRACK, - ACTIONS(4920), 1, - sym__concat, - STATE(1595), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [74502] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1316), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [74549] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1320), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [74596] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4922), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1252), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [74649] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4928), 1, - sym__concat, - ACTIONS(4926), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4924), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [74698] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 1, - aux_sym_concatenation_token1, - ACTIONS(4930), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1246), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [74751] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4936), 1, - sym__concat, - ACTIONS(4934), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4932), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [74800] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4938), 1, - sym__special_character, - STATE(1664), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1357), 24, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [74851] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4392), 1, - sym_file_descriptor, - ACTIONS(3248), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(3236), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(4390), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [74902] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [74949] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [74996] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1155), 1, - aux_sym_concatenation_token1, - ACTIONS(4941), 1, - sym__concat, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1254), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [75049] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [75096] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [75143] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1320), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [75190] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1296), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [75237] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4858), 1, - sym__regex_no_space, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(1629), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [75326] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [75373] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1328), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [75420] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [75467] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1270), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [75514] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1270), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [75561] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [75608] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [75655] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [75702] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1344), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [75749] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1692), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4872), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1244), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [75800] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_unary_expression_token1, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(220), 1, - sym_word, - ACTIONS(222), 1, - anon_sym_BANG, - ACTIONS(1099), 1, - sym__special_character, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1111), 1, - sym_test_operator, - ACTIONS(4858), 1, - sym__regex_no_space, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1629), 1, - sym__expression, - STATE(1636), 1, - aux_sym__literal_repeat1, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1103), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [75889] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1348), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [75936] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4945), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4669), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2204), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4943), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76025] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_concatenation_token1, - ACTIONS(4342), 1, - sym__concat, - STATE(1597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4034), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(4032), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [76078] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1274), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [76125] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1336), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [76172] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1332), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [76219] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1324), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [76266] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4872), 1, - aux_sym_concatenation_token1, - ACTIONS(4947), 1, - sym__concat, - STATE(1703), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1248), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [76319] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1693), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4949), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1263), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [76370] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4872), 1, - aux_sym_concatenation_token1, - ACTIONS(4952), 1, - sym__concat, - STATE(1703), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [76423] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4761), 1, - aux_sym_concatenation_token1, - ACTIONS(4954), 1, - sym__concat, - STATE(1693), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1254), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [76476] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4761), 1, - aux_sym_concatenation_token1, - ACTIONS(4956), 1, - sym__concat, - STATE(1693), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1248), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [76529] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1696), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4761), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1244), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [76580] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1123), 1, - aux_sym_concatenation_token1, - ACTIONS(4958), 1, - anon_sym_RBRACK, - ACTIONS(4960), 1, - sym__concat, - STATE(1595), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [76635] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1137), 1, - anon_sym_RBRACK, - ACTIONS(4763), 1, - sym__special_character, - ACTIONS(4962), 1, - sym__concat, - STATE(1600), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(600), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [76690] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4966), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4618), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2232), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4964), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76779] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4970), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4617), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2230), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4968), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76868] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4974), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4687), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2223), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4972), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76957] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1703), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4976), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [77008] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4981), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4600), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2236), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4979), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77097] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4828), 1, - sym__special_character, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4840), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4985), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4601), 1, - sym_last_case_item, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4844), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2227), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4816), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4983), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77186] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1155), 1, - aux_sym_concatenation_token1, - ACTIONS(4987), 1, - sym__concat, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1248), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [77239] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4991), 1, - anon_sym_DQUOTE, - STATE(2389), 1, - sym_string, - ACTIONS(4993), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4989), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 23, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [77294] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4991), 1, - anon_sym_DQUOTE, - STATE(2389), 1, - sym_string, - ACTIONS(4993), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(4989), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 23, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [77349] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2052), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77435] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1155), 1, - aux_sym_concatenation_token1, - ACTIONS(4995), 1, - sym__concat, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1254), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [77487] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1710), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1155), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [77537] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [77583] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1348), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [77629] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2051), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77715] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4997), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - STATE(4232), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [77771] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5009), 1, - anon_sym_RPAREN_RPAREN, - STATE(4293), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [77827] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4902), 1, - sym__special_character, - STATE(1831), 1, - aux_sym__literal_repeat1, - STATE(2056), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77913] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5011), 1, - anon_sym_RPAREN_RPAREN, - STATE(4266), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [77969] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5013), 1, - anon_sym_RPAREN_RPAREN, - STATE(4249), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [78025] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [78071] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [78117] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1348), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [78163] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5015), 1, - anon_sym_RPAREN_RPAREN, - STATE(4222), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [78219] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1320), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [78265] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1113), 1, - sym_word, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(1129), 1, - sym_test_operator, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - STATE(1641), 1, - aux_sym__literal_repeat1, - STATE(1929), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1127), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1978), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1584), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [78351] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5017), 1, - anon_sym_RPAREN_RPAREN, - STATE(4268), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [78407] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1296), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [78453] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [78499] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1780), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5019), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1244), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [78549] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5021), 1, - anon_sym_RPAREN_RPAREN, - STATE(4205), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [78605] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5023), 1, - sym__special_character, - STATE(1854), 1, - aux_sym__literal_repeat1, - ACTIONS(145), 12, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(178), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [78655] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5025), 1, - anon_sym_RPAREN_RPAREN, - STATE(4246), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [78711] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [78757] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1328), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [78803] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(131), 1, - aux_sym_unary_expression_token1, - ACTIONS(139), 1, - sym_word, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(152), 1, - anon_sym_BANG, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1141), 1, - sym__special_character, - ACTIONS(1145), 1, - sym_test_operator, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1636), 1, - aux_sym__literal_repeat1, - STATE(2107), 1, - sym__expression, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1143), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1637), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [78889] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5027), 1, - anon_sym_RPAREN_RPAREN, - STATE(4212), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [78945] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5029), 1, - anon_sym_RPAREN_RPAREN, - STATE(4158), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [79001] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [79047] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5031), 1, - anon_sym_RPAREN_RPAREN, - STATE(4230), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [79103] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(5033), 1, - sym_word, - ACTIONS(5037), 1, - sym_test_operator, - STATE(1655), 1, - aux_sym__literal_repeat1, - STATE(2187), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5035), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(1973), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1657), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79191] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2085), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79277] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2139), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79363] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5039), 1, - anon_sym_RPAREN_RPAREN, - STATE(4178), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [79419] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5043), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5041), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [79465] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1830), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5045), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1244), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [79515] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [79561] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1113), 1, - sym_word, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(1129), 1, - sym_test_operator, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - STATE(1641), 1, - aux_sym__literal_repeat1, - STATE(2003), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1127), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1978), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1584), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79647] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [79693] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5049), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5047), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [79739] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5051), 1, - anon_sym_RPAREN_RPAREN, - STATE(4198), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [79795] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5053), 1, - anon_sym_RPAREN_RPAREN, - STATE(4193), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [79851] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4902), 1, - sym__special_character, - STATE(1831), 1, - aux_sym__literal_repeat1, - STATE(2125), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79937] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2122), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80023] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(131), 1, - aux_sym_unary_expression_token1, - ACTIONS(139), 1, - sym_word, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(152), 1, - anon_sym_BANG, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1141), 1, - sym__special_character, - ACTIONS(1145), 1, - sym_test_operator, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1636), 1, - aux_sym__literal_repeat1, - STATE(2038), 1, - sym__expression, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1143), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1637), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80109] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5055), 1, - anon_sym_RPAREN_RPAREN, - STATE(4234), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [80165] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1790), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5057), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4036), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4038), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [80215] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1286), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [80261] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1788), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5057), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4032), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4034), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [80311] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5059), 1, - anon_sym_RPAREN_RPAREN, - STATE(4255), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [80367] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5061), 1, - anon_sym_RPAREN_RPAREN, - STATE(4176), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [80423] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4902), 1, - sym__special_character, - STATE(1831), 1, - aux_sym__literal_repeat1, - STATE(2133), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80509] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5063), 1, - anon_sym_RPAREN_RPAREN, - STATE(4218), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [80565] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1778), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5019), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3985), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3987), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [80615] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(5065), 1, - sym_word, - ACTIONS(5069), 1, - sym_test_operator, - STATE(1604), 1, - aux_sym__literal_repeat1, - STATE(2187), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5067), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2028), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1603), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80703] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5023), 1, - sym__special_character, - STATE(1854), 1, - aux_sym__literal_repeat1, - ACTIONS(3663), 12, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3665), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [80753] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1340), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [80799] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1263), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [80845] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5071), 1, - anon_sym_RPAREN_RPAREN, - STATE(4188), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [80901] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4902), 1, - sym__special_character, - STATE(1831), 1, - aux_sym__literal_repeat1, - STATE(2075), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80987] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1780), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5019), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3989), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3991), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [81037] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1827), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5045), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3837), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3839), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [81087] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1830), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5045), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3841), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3843), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [81137] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1773), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5073), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [81187] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2037), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81273] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5076), 1, - anon_sym_RPAREN_RPAREN, - STATE(4166), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [81329] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1278), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [81375] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5078), 1, - anon_sym_RPAREN_RPAREN, - STATE(4291), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [81431] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5019), 1, - aux_sym_concatenation_token1, - ACTIONS(5080), 1, - sym__concat, - STATE(1773), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [81483] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2128), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81569] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5019), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1773), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1248), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [81621] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5084), 1, - anon_sym_RPAREN_RPAREN, - STATE(4208), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [81677] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1282), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [81723] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1788), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5057), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1244), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [81773] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1320), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [81819] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2080), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81905] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(302), 1, - aux_sym_unary_expression_token1, - ACTIONS(596), 1, - sym_word, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(607), 1, - anon_sym_BANG, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(633), 1, - sym_test_operator, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(4860), 1, - sym__special_character, - STATE(1923), 1, - aux_sym__literal_repeat1, - STATE(2140), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(617), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2073), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1635), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81991] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(131), 1, - aux_sym_unary_expression_token1, - ACTIONS(139), 1, - sym_word, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(152), 1, - anon_sym_BANG, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1141), 1, - sym__special_character, - ACTIONS(1145), 1, - sym_test_operator, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1636), 1, - aux_sym__literal_repeat1, - STATE(2060), 1, - sym__expression, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1143), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1637), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82077] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5057), 1, - aux_sym_concatenation_token1, - ACTIONS(5086), 1, - sym__concat, - STATE(1799), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1248), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [82129] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1296), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [82175] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5057), 1, - aux_sym_concatenation_token1, - ACTIONS(5088), 1, - sym__concat, - STATE(1799), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1254), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [82227] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [82273] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [82319] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(5090), 1, - sym__concat, - STATE(1356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1252), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [82371] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5094), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5092), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [82417] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1300), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [82463] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1286), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [82509] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(5096), 1, - sym__concat, - STATE(1356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1246), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [82561] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1193), 1, - sym_word, - ACTIONS(1195), 1, - anon_sym_BANG, - ACTIONS(1197), 1, - aux_sym_unary_expression_token1, - ACTIONS(1199), 1, - sym__special_character, - ACTIONS(1203), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(1629), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1201), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1711), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82647] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1799), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5098), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1263), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [82697] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1304), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [82743] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2100), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82829] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5101), 1, - anon_sym_RPAREN_RPAREN, - STATE(4165), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [82885] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1193), 1, - sym_word, - ACTIONS(1195), 1, - anon_sym_BANG, - ACTIONS(1197), 1, - aux_sym_unary_expression_token1, - ACTIONS(1199), 1, - sym__special_character, - ACTIONS(1203), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2181), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1201), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1711), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82971] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [83017] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [83063] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(302), 1, - aux_sym_unary_expression_token1, - ACTIONS(596), 1, - sym_word, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(607), 1, - anon_sym_BANG, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(633), 1, - sym_test_operator, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(4860), 1, - sym__special_character, - STATE(1923), 1, - aux_sym__literal_repeat1, - STATE(2097), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(617), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2073), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1635), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83149] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1312), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [83195] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4902), 1, - sym__special_character, - STATE(1831), 1, - aux_sym__literal_repeat1, - STATE(2130), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83281] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1316), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [83327] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1296), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [83373] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_unary_expression_token1, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(220), 1, - sym_word, - ACTIONS(222), 1, - anon_sym_BANG, - ACTIONS(1099), 1, - sym__special_character, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1111), 1, - sym_test_operator, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1636), 1, - aux_sym__literal_repeat1, - STATE(1990), 1, - sym__expression, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1103), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83459] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1812), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5103), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [83509] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1274), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [83555] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_unary_expression_token1, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(220), 1, - sym_word, - ACTIONS(222), 1, - anon_sym_BANG, - ACTIONS(1099), 1, - sym__special_character, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1111), 1, - sym_test_operator, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1636), 1, - aux_sym__literal_repeat1, - STATE(1989), 1, - sym__expression, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1103), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83641] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [83687] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [83733] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4902), 1, - sym__special_character, - STATE(1831), 1, - aux_sym__literal_repeat1, - STATE(2144), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83819] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5106), 1, - anon_sym_RPAREN_RPAREN, - STATE(4256), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [83875] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(5108), 1, - sym_word, - ACTIONS(5112), 1, - sym_test_operator, - STATE(1699), 1, - aux_sym__literal_repeat1, - STATE(2187), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5110), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(1974), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1698), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83963] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5114), 1, - anon_sym_RPAREN_RPAREN, - STATE(4204), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [84019] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5116), 1, - anon_sym_RPAREN_RPAREN, - STATE(4179), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [84075] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [84121] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1244), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [84167] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5118), 1, - sym__special_character, - STATE(1824), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1357), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [84217] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5121), 1, - anon_sym_RPAREN_RPAREN, - STATE(4236), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [84273] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5023), 1, - sym__special_character, - STATE(1854), 1, - aux_sym__literal_repeat1, - ACTIONS(3673), 12, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3675), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [84323] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5045), 1, - aux_sym_concatenation_token1, - ACTIONS(5123), 1, - sym__concat, - STATE(1812), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [84375] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - sym__special_character, - ACTIONS(1244), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [84421] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5125), 1, - anon_sym_RPAREN_RPAREN, - STATE(4277), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [84477] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5045), 1, - aux_sym_concatenation_token1, - ACTIONS(5127), 1, - sym__concat, - STATE(1812), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1248), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [84529] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5129), 1, - sym__special_character, - STATE(1910), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(600), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [84579] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [84625] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1332), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [84671] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1344), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [84717] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5131), 1, - anon_sym_RPAREN_RPAREN, - STATE(4185), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [84773] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_unary_expression_token1, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(220), 1, - sym_word, - ACTIONS(222), 1, - anon_sym_BANG, - ACTIONS(1099), 1, - sym__special_character, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1111), 1, - sym_test_operator, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1629), 1, - sym__expression, - STATE(1636), 1, - aux_sym__literal_repeat1, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1103), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84859] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5133), 1, - anon_sym_RPAREN_RPAREN, - STATE(4173), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [84915] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5135), 1, - anon_sym_RPAREN_RPAREN, - STATE(4189), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [84971] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4799), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4797), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [85017] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2102), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85103] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1324), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [85149] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1336), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [85195] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5137), 1, - anon_sym_RPAREN_RPAREN, - STATE(4250), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [85251] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1320), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [85297] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1332), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [85343] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5139), 6, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [85391] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1113), 1, - sym_word, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(1129), 1, - sym_test_operator, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - STATE(1641), 1, - aux_sym__literal_repeat1, - STATE(1967), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1127), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1978), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1584), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85477] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5143), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5141), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [85523] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1270), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [85569] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5145), 1, - anon_sym_RPAREN_RPAREN, - STATE(4219), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [85625] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1328), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [85671] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1270), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [85717] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1340), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [85763] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5147), 1, - sym__special_character, - STATE(1854), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 12, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1357), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [85813] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_unary_expression_token1, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(220), 1, - sym_word, - ACTIONS(222), 1, - anon_sym_BANG, - ACTIONS(1099), 1, - sym__special_character, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1111), 1, - sym_test_operator, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1636), 1, - aux_sym__literal_repeat1, - STATE(1985), 1, - sym__expression, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1103), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85899] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1263), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [85945] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1304), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [85991] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(1629), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86077] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2063), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86163] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2106), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86249] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5152), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5150), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [86295] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5152), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5150), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [86341] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5154), 1, - anon_sym_RPAREN_RPAREN, - STATE(4274), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [86397] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1270), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [86443] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1270), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [86489] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5156), 1, - anon_sym_RPAREN_RPAREN, - STATE(4238), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [86545] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1274), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [86591] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1193), 1, - sym_word, - ACTIONS(1195), 1, - anon_sym_BANG, - ACTIONS(1197), 1, - aux_sym_unary_expression_token1, - ACTIONS(1199), 1, - sym__special_character, - ACTIONS(1203), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2149), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1201), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1711), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86677] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5158), 1, - anon_sym_RPAREN_RPAREN, - STATE(4276), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [86733] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2054), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86819] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5162), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5160), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [86865] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5164), 1, - anon_sym_RPAREN_RPAREN, - STATE(4195), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [86921] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5166), 1, - anon_sym_RPAREN_RPAREN, - STATE(4282), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [86977] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5168), 1, - anon_sym_RPAREN_RPAREN, - STATE(4253), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [87033] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1344), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [87079] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1348), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [87125] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1278), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [87171] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1793), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3987), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3985), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [87223] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5170), 1, - anon_sym_RPAREN_RPAREN, - STATE(4270), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [87279] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1797), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3991), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(3989), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [87331] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1316), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [87377] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1274), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [87423] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1244), 25, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym__special_character, - sym_test_operator, - [87469] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1113), 1, - sym_word, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(1129), 1, - sym_test_operator, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - STATE(1641), 1, - aux_sym__literal_repeat1, - STATE(2004), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1127), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1978), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1584), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87555] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1282), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [87601] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5172), 1, - anon_sym_RPAREN_RPAREN, - STATE(4209), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [87657] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5174), 1, - anon_sym_RPAREN_RPAREN, - STATE(4272), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [87713] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(302), 1, - aux_sym_unary_expression_token1, - ACTIONS(596), 1, - sym_word, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(607), 1, - anon_sym_BANG, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(633), 1, - sym_test_operator, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(4860), 1, - sym__special_character, - STATE(1923), 1, - aux_sym__literal_repeat1, - STATE(2093), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(617), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2073), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1635), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87799] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(302), 1, - aux_sym_unary_expression_token1, - ACTIONS(596), 1, - sym_word, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(607), 1, - anon_sym_BANG, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(633), 1, - sym_test_operator, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(4860), 1, - sym__special_character, - STATE(1923), 1, - aux_sym__literal_repeat1, - STATE(2096), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(617), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2073), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1635), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87885] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1320), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [87931] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1827), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5045), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3985), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3987), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [87981] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1336), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [88027] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1332), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [88073] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1830), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5045), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3989), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3991), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [88123] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2062), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88209] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5176), 1, - anon_sym_RPAREN_RPAREN, - STATE(4284), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [88265] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5178), 1, - anon_sym_RPAREN_RPAREN, - STATE(4283), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [88321] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2057), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88407] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4866), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4864), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [88453] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1312), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [88499] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1324), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [88545] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1324), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [88591] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1328), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [88637] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5180), 1, - anon_sym_RPAREN_RPAREN, - STATE(4206), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [88693] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5182), 1, - anon_sym_RPAREN_RPAREN, - STATE(4260), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [88749] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1193), 1, - sym_word, - ACTIONS(1195), 1, - anon_sym_BANG, - ACTIONS(1197), 1, - aux_sym_unary_expression_token1, - ACTIONS(1199), 1, - sym__special_character, - ACTIONS(1203), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2163), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1201), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1711), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88835] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1324), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [88881] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1332), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [88927] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5184), 1, - anon_sym_RPAREN_RPAREN, - STATE(4252), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [88983] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5186), 1, - sym__special_character, - STATE(1910), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1357), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [89033] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5189), 1, - anon_sym_RPAREN_RPAREN, - STATE(4235), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [89089] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2092), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89175] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(1115), 1, - anon_sym_LPAREN, - ACTIONS(1117), 1, - anon_sym_BANG, - ACTIONS(1121), 1, - aux_sym_unary_expression_token1, - ACTIONS(4755), 1, - sym__special_character, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(5191), 1, - sym_word, - ACTIONS(5195), 1, - sym_test_operator, - STATE(1585), 1, - aux_sym__literal_repeat1, - STATE(2187), 1, - sym__expression, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5193), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(1982), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1587), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89263] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(192), 1, - aux_sym_unary_expression_token1, - ACTIONS(230), 1, - sym_word, - ACTIONS(234), 1, - anon_sym_LPAREN, - ACTIONS(236), 1, - anon_sym_BANG, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1187), 1, - sym__special_character, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2129), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1189), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2117), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89349] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1344), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [89395] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1336), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [89441] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1151), 1, - anon_sym_BANG, - ACTIONS(1153), 1, - aux_sym_unary_expression_token1, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - STATE(1586), 1, - aux_sym__literal_repeat1, - STATE(2120), 1, - sym__expression, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1161), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89527] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - aux_sym_concatenation_token1, - ACTIONS(4414), 1, - sym__concat, - STATE(1797), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1242), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [89579] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - aux_sym_unary_expression_token1, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(4902), 1, - sym__special_character, - STATE(1629), 1, - sym__expression, - STATE(1831), 1, - aux_sym__literal_repeat1, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89665] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1300), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [89711] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5197), 1, - anon_sym_RPAREN_RPAREN, - STATE(4289), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [89767] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(131), 1, - aux_sym_unary_expression_token1, - ACTIONS(139), 1, - sym_word, - ACTIONS(150), 1, - anon_sym_LPAREN, - ACTIONS(152), 1, - anon_sym_BANG, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1141), 1, - sym__special_character, - ACTIONS(1145), 1, - sym_test_operator, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - STATE(1629), 1, - sym__expression, - STATE(1636), 1, - aux_sym__literal_repeat1, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1143), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1637), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89853] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5199), 1, - sym__special_character, - STATE(1824), 1, - aux_sym__literal_repeat1, - ACTIONS(143), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(600), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [89903] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5203), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5201), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [89949] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5207), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5205), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [89995] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1155), 1, - aux_sym_concatenation_token1, - ACTIONS(5209), 1, - sym__concat, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1248), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [90047] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5211), 1, - anon_sym_RPAREN_RPAREN, - STATE(4170), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [90103] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90148] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4886), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4884), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [90193] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1274), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90238] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1931), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5213), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90287] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5216), 1, - aux_sym_concatenation_token1, - ACTIONS(5218), 1, - sym__concat, - STATE(1931), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90338] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90383] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90428] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5216), 1, - aux_sym_concatenation_token1, - ACTIONS(5220), 1, - sym__concat, - STATE(1931), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1248), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90479] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1336), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90524] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1332), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90569] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1324), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90614] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1332), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90659] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1324), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90704] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5222), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5232), 1, - anon_sym_RPAREN, - ACTIONS(5234), 1, - anon_sym_QMARK, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5230), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5224), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5228), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [90759] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1324), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90804] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90849] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90894] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5236), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [90945] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [90990] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91035] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5222), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5234), 1, - anon_sym_QMARK, - ACTIONS(5238), 1, - anon_sym_RPAREN, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5230), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5224), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5228), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [91090] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1332), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91135] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91180] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1935), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5216), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1244), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91229] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91274] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91319] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5234), 1, - anon_sym_QMARK, - ACTIONS(5238), 1, - anon_sym_RPAREN, - ACTIONS(5240), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5230), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5224), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5228), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [91374] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91419] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91464] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1320), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91509] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91554] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91599] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1316), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91644] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5242), 1, - sym__concat, - ACTIONS(4866), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4864), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [91691] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5244), 1, - sym__concat, - ACTIONS(4926), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4924), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [91738] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1348), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91783] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1344), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91828] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5246), 1, - sym__concat, - ACTIONS(4934), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4932), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [91875] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91920] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5254), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5250), 5, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5248), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5252), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [91969] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5256), 1, - sym__special_character, - STATE(1983), 1, - aux_sym__literal_repeat1, - ACTIONS(3989), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3991), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [92018] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1320), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [92063] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1225), 12, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1234), 25, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [92108] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [92153] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5258), 1, - anon_sym_LBRACK, - ACTIONS(4775), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4773), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [92200] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4918), 1, - anon_sym_RBRACK, - ACTIONS(5260), 1, - sym__concat, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [92249] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4958), 1, - anon_sym_RBRACK, - ACTIONS(5262), 1, - sym__concat, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [92298] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [92343] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5264), 1, - sym__special_character, - STATE(1993), 1, - aux_sym__literal_repeat1, - ACTIONS(3841), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(3843), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [92392] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1296), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [92437] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [92482] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [92527] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3946), 1, - sym__brace_start, - ACTIONS(5270), 1, - aux_sym_number_token1, - ACTIONS(5272), 1, - aux_sym_number_token2, - ACTIONS(5274), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5266), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5268), 2, - anon_sym_LF, - aux_sym__simple_variable_name_token1, - STATE(4398), 3, - sym_arithmetic_expansion, - sym_number, - sym_expansion, - ACTIONS(3948), 26, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [92584] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [92629] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4769), 1, - anon_sym_RBRACK, - ACTIONS(5276), 1, - sym__concat, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [92678] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5278), 1, - sym__special_character, - STATE(1983), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1357), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [92727] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [92772] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5281), 1, - anon_sym_RPAREN, - ACTIONS(5230), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5250), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5224), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5228), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [92823] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5264), 1, - sym__special_character, - STATE(1993), 1, - aux_sym__literal_repeat1, - ACTIONS(3777), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(3779), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [92872] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [92917] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1296), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [92962] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5285), 1, - anon_sym_RPAREN, - ACTIONS(5230), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5224), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5228), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [93013] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5285), 1, - anon_sym_RPAREN, - ACTIONS(5230), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5224), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5228), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [93064] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3659), 12, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3661), 25, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93109] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93154] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5287), 1, - sym__special_character, - STATE(1993), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1357), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93203] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93248] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1270), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93293] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1270), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93338] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_DQUOTE, - STATE(2730), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5294), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5290), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [93391] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93436] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93481] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93526] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_DQUOTE, - STATE(2730), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5294), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5290), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [93579] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93624] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5254), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 5, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5248), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5252), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [93673] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5254), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 5, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5248), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5252), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [93722] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1286), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93767] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93812] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1328), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93857] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1340), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93902] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - sym__special_character, - ACTIONS(1244), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [93947] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1263), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [93992] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1278), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94037] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94082] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1282), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94127] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3683), 12, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3685), 25, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94172] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94217] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1320), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94262] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94307] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1296), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94352] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 14, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - sym__special_character, - ACTIONS(1244), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [94397] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1932), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5216), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3985), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3987), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94446] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1935), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5216), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3989), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3991), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94495] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1300), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94540] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5296), 1, - sym__concat, - ACTIONS(4799), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4797), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [94587] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1304), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94632] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5298), 1, - sym__concat, - ACTIONS(4799), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4797), 19, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94679] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4892), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4890), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [94724] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5300), 1, - sym__concat, - ACTIONS(4866), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4864), 19, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94771] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4806), 1, - anon_sym_RBRACK, - ACTIONS(5302), 1, - sym__concat, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [94820] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 12, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1244), 25, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94865] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - sym__concat, - ACTIONS(4934), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4932), 19, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94912] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1312), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94957] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95002] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5306), 1, - sym__concat, - ACTIONS(4926), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4924), 19, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95049] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4886), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4884), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [95094] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3837), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(3839), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95138] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5094), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5092), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [95182] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5314), 1, - anon_sym_QMARK, - ACTIONS(5316), 1, - anon_sym_COLON, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [95234] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5322), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5318), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5320), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [95282] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95326] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5049), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5047), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [95370] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5324), 1, - anon_sym_COLON, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [95420] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1336), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [95464] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95508] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4799), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4797), 19, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95552] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5326), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5328), 1, - anon_sym_QMARK, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5322), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5318), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5320), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [95604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4866), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4864), 19, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95648] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95692] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95736] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95780] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4898), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4896), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [95824] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5334), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(5330), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5332), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [95872] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5338), 1, - anon_sym_RPAREN, - ACTIONS(5340), 1, - anon_sym_QMARK, - ACTIONS(5336), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5334), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5330), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5332), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [95924] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5342), 1, - sym__special_character, - STATE(2142), 1, - aux_sym__literal_repeat1, - ACTIONS(3841), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3843), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95972] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(5308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [96020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1270), 19, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [96064] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5350), 1, - anon_sym_QMARK, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5348), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5344), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5346), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [96116] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(5308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [96164] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4799), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4797), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [96208] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5207), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5205), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [96252] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5322), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5318), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5320), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [96300] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4866), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4864), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [96344] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5314), 1, - anon_sym_QMARK, - ACTIONS(5352), 1, - anon_sym_COLON, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [96396] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5340), 1, - anon_sym_QMARK, - ACTIONS(5354), 1, - anon_sym_RPAREN, - ACTIONS(5336), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5334), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5330), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5332), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [96448] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5043), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5041), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [96492] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4886), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4884), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [96536] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5203), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5201), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [96580] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5007), 1, - anon_sym_QMARK, - ACTIONS(5356), 1, - anon_sym_COLON, - ACTIONS(5003), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5001), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5005), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [96630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5049), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5047), 19, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [96674] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5358), 1, - sym__special_character, - STATE(2069), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1357), 24, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [96722] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1320), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [96766] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4892), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4890), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [96810] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1320), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [96854] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [96898] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_RBRACK, - ACTIONS(5369), 1, - anon_sym_QMARK, - ACTIONS(5363), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5367), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5361), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5365), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [96950] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(137), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5350), 1, - anon_sym_QMARK, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5348), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5344), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5346), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [97002] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4374), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4376), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [97046] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [97090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5043), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5041), 19, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [97134] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5222), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5328), 1, - anon_sym_QMARK, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5322), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5318), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5320), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [97186] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4886), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4884), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [97230] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5371), 1, - sym__special_character, - STATE(2081), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1357), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [97278] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [97322] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [97366] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [97410] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5340), 1, - anon_sym_QMARK, - ACTIONS(5374), 1, - anon_sym_RPAREN, - ACTIONS(5336), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5334), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5330), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5332), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [97462] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1344), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [97506] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1348), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [97550] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4892), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4890), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [97594] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym_file_descriptor, - ACTIONS(5378), 1, - anon_sym_DQUOTE, - STATE(2889), 1, - sym_string, - ACTIONS(5380), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5376), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [97646] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(5378), 1, - anon_sym_DQUOTE, - STATE(2889), 1, - sym_string, - ACTIONS(5380), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5376), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [97698] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5162), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5160), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [97742] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5314), 1, - anon_sym_QMARK, - ACTIONS(5382), 1, - anon_sym_COLON, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [97794] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4886), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4884), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [97838] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5384), 1, - sym__special_character, - STATE(2069), 1, - aux_sym__literal_repeat1, - ACTIONS(3989), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3991), 24, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [97886] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(137), 1, - anon_sym_RBRACK, - ACTIONS(5369), 1, - anon_sym_QMARK, - ACTIONS(5363), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5367), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5361), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5365), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [97938] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5367), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5361), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5365), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [97986] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5367), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5361), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5365), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [98034] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1324), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [98078] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5139), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(5386), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5388), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [98124] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5334), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5250), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(5330), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5332), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [98172] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [98216] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5250), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(5308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [98264] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [98308] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5152), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5150), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [98352] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4420), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(4422), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(3236), 6, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4425), 6, - sym_file_descriptor, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(4638), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(3248), 13, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [98404] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5314), 1, - anon_sym_QMARK, - ACTIONS(5390), 1, - anon_sym_COLON, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [98456] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5322), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5250), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5318), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5320), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [98504] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [98548] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_DQUOTE, - STATE(2730), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5294), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5290), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [98600] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5152), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5150), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [98644] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4898), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4896), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [98688] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5240), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(5328), 1, - anon_sym_QMARK, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5322), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5318), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5320), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [98740] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1328), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [98784] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1244), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [98828] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 17, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_COMMA2, - anon_sym_CARET2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1270), 19, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_COMMA_COMMA2, - anon_sym_CARET_CARET2, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [98872] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5394), 1, - anon_sym_RPAREN, - ACTIONS(5396), 1, - anon_sym_QMARK, - ACTIONS(5392), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5386), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5388), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [98922] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1227), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1364), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [98966] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5398), 1, - sym__special_character, - STATE(2081), 1, - aux_sym__literal_repeat1, - ACTIONS(4032), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4034), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [99014] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1274), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [99058] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5314), 1, - anon_sym_QMARK, - ACTIONS(5400), 1, - anon_sym_COLON, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [99110] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_DQUOTE, - STATE(2730), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5294), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5290), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [99162] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5334), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(5330), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5332), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [99210] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1244), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [99254] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4370), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(4372), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [99298] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5348), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - ACTIONS(5344), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5346), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [99346] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [99390] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [99434] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5314), 1, - anon_sym_QMARK, - ACTIONS(5402), 1, - anon_sym_COLON, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [99486] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5340), 1, - anon_sym_QMARK, - ACTIONS(5404), 1, - anon_sym_RPAREN, - ACTIONS(5336), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5334), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5330), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5332), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [99538] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5348), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5283), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - ACTIONS(5344), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5346), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [99586] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4886), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4884), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [99630] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1332), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [99674] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5348), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5250), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - ACTIONS(5344), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5346), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [99722] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5342), 1, - sym__special_character, - STATE(2142), 1, - aux_sym__literal_repeat1, - ACTIONS(3989), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3991), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [99770] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5314), 1, - anon_sym_QMARK, - ACTIONS(5406), 1, - anon_sym_COLON, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [99822] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1296), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [99866] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5396), 1, - anon_sym_QMARK, - ACTIONS(5408), 1, - anon_sym_RPAREN, - ACTIONS(5392), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5386), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5388), 19, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - sym_test_operator, - [99916] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [99960] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5314), 1, - anon_sym_QMARK, - ACTIONS(5410), 1, - anon_sym_COLON, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5312), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5308), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5310), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [100012] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5367), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5250), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5361), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5365), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [100060] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1324), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [100104] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5412), 1, - sym__special_character, - STATE(2142), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1357), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [100152] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(127), 1, - anon_sym_RBRACK, - ACTIONS(5369), 1, - anon_sym_QMARK, - ACTIONS(5363), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5367), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5361), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5365), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [100204] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(127), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5350), 1, - anon_sym_QMARK, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5348), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5344), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5346), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [100256] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5143), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5141), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [100300] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [100344] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1332), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [100388] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5417), 1, - anon_sym_esac, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4770), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2208), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100473] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5250), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5439), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5435), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5437), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [100520] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1244), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [100563] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [100614] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4981), 1, - anon_sym_esac, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4600), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2236), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100699] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - ACTIONS(5447), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4580), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2190), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100784] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3236), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4390), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(4392), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(3248), 14, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [100831] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2179), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5453), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5449), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5451), 16, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [100878] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5455), 1, - sym__special_character, - STATE(2156), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1357), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [100925] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4882), 1, - anon_sym_esac, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4422), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2210), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101010] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4985), 1, - anon_sym_esac, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4601), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2227), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101095] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [101146] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2179), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5453), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1244), 16, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [101193] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [101244] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym_file_descriptor, - ACTIONS(5378), 1, - anon_sym_DQUOTE, - STATE(2889), 1, - sym_string, - ACTIONS(5380), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5376), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [101295] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5283), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5439), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5435), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5437), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [101342] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1213), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [101393] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - ACTIONS(5458), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4578), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2193), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101478] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [101529] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(5378), 1, - anon_sym_DQUOTE, - STATE(2889), 1, - sym_string, - ACTIONS(5380), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5376), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [101580] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - ACTIONS(5460), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4411), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2215), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101665] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4370), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4372), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [101708] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3837), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3839), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [101751] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - ACTIONS(5462), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4743), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2207), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101836] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1244), 24, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [101879] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2180), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5453), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3946), 16, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(3948), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - [101926] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4974), 1, - anon_sym_esac, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4687), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2223), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102011] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4420), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(4422), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(3236), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4638), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(4425), 6, - sym_file_descriptor, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3248), 14, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102062] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1244), 24, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102105] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4374), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4376), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102148] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5464), 1, - sym__special_character, - STATE(2156), 1, - aux_sym__literal_repeat1, - ACTIONS(3989), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3991), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102195] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5453), 1, - aux_sym_concatenation_token1, - ACTIONS(5466), 1, - sym__concat, - STATE(2185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1248), 16, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102244] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5453), 1, - aux_sym_concatenation_token1, - ACTIONS(5468), 1, - sym__concat, - STATE(2185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 16, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102293] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5283), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(5439), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5435), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5437), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [102340] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4876), 1, - anon_sym_esac, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4419), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2214), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102425] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(4945), 1, - anon_sym_esac, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4669), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2204), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102510] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - ACTIONS(5470), 1, - anon_sym_esac, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4410), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2220), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102595] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2185), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5472), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 16, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102642] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [102693] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5475), 1, - anon_sym_QMARK, - ACTIONS(5226), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5254), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(5248), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5252), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [102742] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102784] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [102826] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4572), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102908] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4687), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102990] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5485), 1, - sym__special_character, - ACTIONS(5487), 1, - anon_sym_DQUOTE, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5493), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5497), 1, - anon_sym_BQUOTE, - ACTIONS(5499), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5503), 1, - sym_test_operator, - ACTIONS(5505), 1, - sym__brace_start, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(5479), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5501), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2196), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5477), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5481), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2811), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103064] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4571), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [103188] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4422), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103270] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5513), 1, - anon_sym_DOLLAR, - ACTIONS(5516), 1, - sym__special_character, - ACTIONS(5519), 1, - anon_sym_DQUOTE, - ACTIONS(5522), 1, - aux_sym_number_token1, - ACTIONS(5525), 1, - aux_sym_number_token2, - ACTIONS(5528), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5531), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5534), 1, - anon_sym_BQUOTE, - ACTIONS(5537), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5543), 1, - sym_test_operator, - ACTIONS(5546), 1, - sym__brace_start, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(5510), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5540), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2196), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5507), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(2059), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2811), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [103386] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [103436] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [103486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [103528] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5551), 1, - anon_sym_EQ, - ACTIONS(5553), 1, - anon_sym_LF, - ACTIONS(5549), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [103572] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4419), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1332), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [103696] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4770), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [103820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [103862] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4711), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103944] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4714), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [104068] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4411), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104150] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5555), 1, - anon_sym_RPAREN, - ACTIONS(5557), 1, - anon_sym_DQUOTE, - STATE(4524), 1, - sym_string, - ACTIONS(5559), 2, - sym_regex, - sym_raw_string, - ACTIONS(3946), 14, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(3948), 15, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - sym_word, - [104200] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [104250] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1244), 24, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [104292] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4410), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104374] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4431), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104456] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [104506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1322), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1324), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [104548] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [104598] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [104648] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4442), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104730] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [104780] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5485), 1, - sym__special_character, - ACTIONS(5487), 1, - anon_sym_DQUOTE, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5493), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5497), 1, - anon_sym_BQUOTE, - ACTIONS(5499), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5503), 1, - sym_test_operator, - ACTIONS(5505), 1, - sym__brace_start, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(5479), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5501), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2196), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5477), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5567), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2811), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104854] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4743), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [104978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1326), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105020] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [105070] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4580), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105152] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1296), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105236] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4600), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1320), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105360] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4601), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105442] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5485), 1, - sym__special_character, - ACTIONS(5487), 1, - anon_sym_DQUOTE, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5493), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5497), 1, - anon_sym_BQUOTE, - ACTIONS(5499), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5503), 1, - sym_test_operator, - ACTIONS(5505), 1, - sym__brace_start, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(5479), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5501), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2196), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5477), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(5569), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - STATE(2811), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105600] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4578), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105682] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4822), 1, - anon_sym_LPAREN, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4848), 1, - sym_extglob_pattern, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 1, - sym_test_operator, - STATE(4057), 1, - aux_sym__literal_repeat1, - STATE(4183), 1, - sym_concatenation, - STATE(4669), 1, - sym_last_case_item, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5423), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4027), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105848] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1258), 16, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 18, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [105890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5573), 1, - anon_sym_LF, - ACTIONS(5571), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [105931] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5575), 1, - sym_word, - ACTIONS(5581), 1, - anon_sym_LPAREN, - ACTIONS(5584), 1, - anon_sym_DOLLAR, - ACTIONS(5587), 1, - sym__special_character, - ACTIONS(5590), 1, - anon_sym_DQUOTE, - ACTIONS(5596), 1, - aux_sym_number_token1, - ACTIONS(5599), 1, - aux_sym_number_token2, - ACTIONS(5602), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5605), 1, - anon_sym_RBRACE3, - ACTIONS(5607), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5610), 1, - anon_sym_BQUOTE, - ACTIONS(5613), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5619), 1, - sym_test_operator, - ACTIONS(5622), 1, - sym__brace_start, - STATE(3217), 1, - aux_sym__literal_repeat1, - ACTIONS(5578), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5593), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5616), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2242), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - STATE(3005), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106008] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5625), 1, - sym_word, - ACTIONS(5629), 1, - anon_sym_LPAREN, - ACTIONS(5631), 1, - anon_sym_DOLLAR, - ACTIONS(5633), 1, - sym__special_character, - ACTIONS(5635), 1, - anon_sym_DQUOTE, - ACTIONS(5639), 1, - aux_sym_number_token1, - ACTIONS(5641), 1, - aux_sym_number_token2, - ACTIONS(5643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5645), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, - anon_sym_BQUOTE, - ACTIONS(5649), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5653), 1, - sym__comment_word, - ACTIONS(5655), 1, - sym_test_operator, - ACTIONS(5657), 1, - sym__empty_value, - ACTIONS(5659), 1, - sym__brace_start, - STATE(2053), 1, - aux_sym__literal_repeat1, - ACTIONS(5627), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5637), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5651), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2170), 2, - sym_concatenation, - sym_array, - STATE(1771), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - anon_sym_LF, - ACTIONS(5661), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [106128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 1, - anon_sym_LF, - ACTIONS(1294), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [106169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5667), 1, - anon_sym_LF, - ACTIONS(5665), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [106210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, - anon_sym_LF, - ACTIONS(1302), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [106251] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [106300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 1, - anon_sym_LF, - ACTIONS(1314), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [106341] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [106390] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5669), 1, - sym_word, - ACTIONS(5673), 1, - anon_sym_LPAREN, - ACTIONS(5675), 1, - anon_sym_DOLLAR, - ACTIONS(5677), 1, - sym__special_character, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5697), 1, - sym__comment_word, - ACTIONS(5699), 1, - sym_test_operator, - ACTIONS(5701), 1, - sym__empty_value, - ACTIONS(5703), 1, - sym__brace_start, - STATE(2788), 1, - aux_sym__literal_repeat1, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5681), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2975), 2, - sym_concatenation, - sym_array, - STATE(3151), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106469] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5705), 1, - sym_word, - ACTIONS(5709), 1, - anon_sym_LPAREN, - ACTIONS(5711), 1, - anon_sym_DOLLAR, - ACTIONS(5713), 1, - sym__special_character, - ACTIONS(5715), 1, - anon_sym_DQUOTE, - ACTIONS(5719), 1, - aux_sym_number_token1, - ACTIONS(5721), 1, - aux_sym_number_token2, - ACTIONS(5723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5727), 1, - anon_sym_BQUOTE, - ACTIONS(5729), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5733), 1, - sym__comment_word, - ACTIONS(5735), 1, - sym_test_operator, - ACTIONS(5737), 1, - sym__empty_value, - ACTIONS(5739), 1, - sym__brace_start, - STATE(1446), 1, - aux_sym__literal_repeat1, - ACTIONS(5707), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5717), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5731), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1454), 2, - sym_concatenation, - sym_array, - STATE(1072), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106548] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5673), 1, - anon_sym_LPAREN, - ACTIONS(5675), 1, - anon_sym_DOLLAR, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5697), 1, - sym__comment_word, - ACTIONS(5701), 1, - sym__empty_value, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(5741), 1, - sym_word, - ACTIONS(5743), 1, - sym__special_character, - ACTIONS(5747), 1, - sym_test_operator, - STATE(2788), 1, - aux_sym__literal_repeat1, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5745), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2975), 2, - sym_concatenation, - sym_array, - STATE(2870), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 1, - anon_sym_LF, - ACTIONS(1322), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [106668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 1, - anon_sym_LF, - ACTIONS(1268), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [106709] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 1, - anon_sym_LF, - ACTIONS(1268), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [106750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 1, - anon_sym_LF, - ACTIONS(1330), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [106791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 1, - anon_sym_LF, - ACTIONS(1334), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [106832] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 1, - anon_sym_LF, - ACTIONS(1318), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [106873] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5755), 1, - anon_sym_LF, - ACTIONS(5751), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5749), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - ACTIONS(5753), 27, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - [106918] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - anon_sym_DOLLAR, - ACTIONS(1899), 1, - aux_sym_number_token1, - ACTIONS(1901), 1, - aux_sym_number_token2, - ACTIONS(1905), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1919), 1, - sym__brace_start, - ACTIONS(5757), 1, - sym_word, - ACTIONS(5761), 1, - anon_sym_LPAREN, - ACTIONS(5763), 1, - sym__special_character, - ACTIONS(5765), 1, - anon_sym_DQUOTE, - ACTIONS(5769), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5771), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5777), 1, - sym__comment_word, - ACTIONS(5779), 1, - sym_test_operator, - ACTIONS(5781), 1, - sym__empty_value, - STATE(1295), 1, - aux_sym__literal_repeat1, - ACTIONS(5759), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5767), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5775), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1394), 2, - sym_concatenation, - sym_array, - STATE(964), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106997] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5783), 1, - sym__special_character, - STATE(2291), 1, - aux_sym__literal_repeat1, - ACTIONS(5449), 14, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5451), 17, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [107042] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5785), 1, - sym_word, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5793), 1, - sym__special_character, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5813), 1, - sym__comment_word, - ACTIONS(5815), 1, - sym_test_operator, - ACTIONS(5817), 1, - sym__empty_value, - ACTIONS(5819), 1, - sym__brace_start, - STATE(1370), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5797), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1560), 2, - sym_concatenation, - sym_array, - STATE(1578), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107121] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1559), 1, - anon_sym_DOLLAR, - ACTIONS(1565), 1, - aux_sym_number_token1, - ACTIONS(1567), 1, - aux_sym_number_token2, - ACTIONS(1571), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1585), 1, - sym__brace_start, - ACTIONS(5821), 1, - sym_word, - ACTIONS(5825), 1, - anon_sym_LPAREN, - ACTIONS(5827), 1, - sym__special_character, - ACTIONS(5829), 1, - anon_sym_DQUOTE, - ACTIONS(5833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5835), 1, - anon_sym_BQUOTE, - ACTIONS(5837), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5841), 1, - sym__comment_word, - ACTIONS(5843), 1, - sym_test_operator, - ACTIONS(5845), 1, - sym__empty_value, - STATE(1192), 1, - aux_sym__literal_repeat1, - ACTIONS(5823), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5831), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5839), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1222), 2, - sym_concatenation, - sym_array, - STATE(786), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107200] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3942), 1, - sym_word, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, - anon_sym_DOLLAR, - ACTIONS(3954), 1, - sym__special_character, - ACTIONS(3956), 1, - anon_sym_DQUOTE, - ACTIONS(3960), 1, - aux_sym_number_token1, - ACTIONS(3962), 1, - aux_sym_number_token2, - ACTIONS(3964), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, - anon_sym_BQUOTE, - ACTIONS(3973), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3977), 1, - sym_test_operator, - ACTIONS(3979), 1, - sym__brace_start, - ACTIONS(5847), 1, - anon_sym_RBRACE3, - STATE(3217), 1, - aux_sym__literal_repeat1, - ACTIONS(3944), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3958), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3975), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2277), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - STATE(3005), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107277] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1925), 1, - anon_sym_DOLLAR, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(5849), 1, - sym_word, - ACTIONS(5853), 1, - anon_sym_LPAREN, - ACTIONS(5855), 1, - sym__special_character, - ACTIONS(5857), 1, - anon_sym_DQUOTE, - ACTIONS(5861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, - anon_sym_BQUOTE, - ACTIONS(5865), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5869), 1, - sym__comment_word, - ACTIONS(5871), 1, - sym_test_operator, - ACTIONS(5873), 1, - sym__empty_value, - STATE(1348), 1, - aux_sym__literal_repeat1, - ACTIONS(5851), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5859), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1376), 2, - sym_concatenation, - sym_array, - STATE(1517), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107356] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5673), 1, - anon_sym_LPAREN, - ACTIONS(5675), 1, - anon_sym_DOLLAR, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5697), 1, - sym__comment_word, - ACTIONS(5701), 1, - sym__empty_value, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(5875), 1, - sym_word, - ACTIONS(5877), 1, - sym__special_character, - ACTIONS(5881), 1, - sym_test_operator, - STATE(2788), 1, - aux_sym__literal_repeat1, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5879), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2975), 2, - sym_concatenation, - sym_array, - STATE(2955), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107435] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3942), 1, - sym_word, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, - anon_sym_DOLLAR, - ACTIONS(3954), 1, - sym__special_character, - ACTIONS(3956), 1, - anon_sym_DQUOTE, - ACTIONS(3960), 1, - aux_sym_number_token1, - ACTIONS(3962), 1, - aux_sym_number_token2, - ACTIONS(3964), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, - anon_sym_BQUOTE, - ACTIONS(3973), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3977), 1, - sym_test_operator, - ACTIONS(3979), 1, - sym__brace_start, - ACTIONS(5883), 1, - anon_sym_RBRACE3, - STATE(3217), 1, - aux_sym__literal_repeat1, - ACTIONS(3944), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3958), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3975), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2289), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - STATE(3005), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107512] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5887), 1, - anon_sym_LF, - ACTIONS(5751), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5885), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - ACTIONS(5753), 27, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - [107557] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 1, - anon_sym_LF, - ACTIONS(1272), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [107598] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5813), 1, - sym__comment_word, - ACTIONS(5817), 1, - sym__empty_value, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(5889), 1, - sym_word, - ACTIONS(5891), 1, - sym__special_character, - ACTIONS(5895), 1, - sym_test_operator, - STATE(1370), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5893), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1560), 2, - sym_concatenation, - sym_array, - STATE(1166), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107677] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5673), 1, - anon_sym_LPAREN, - ACTIONS(5675), 1, - anon_sym_DOLLAR, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5697), 1, - sym__comment_word, - ACTIONS(5701), 1, - sym__empty_value, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(5897), 1, - sym_word, - ACTIONS(5899), 1, - sym__special_character, - ACTIONS(5903), 1, - sym_test_operator, - STATE(2788), 1, - aux_sym__literal_repeat1, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5901), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2975), 2, - sym_concatenation, - sym_array, - STATE(2794), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107756] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5905), 1, - sym_word, - ACTIONS(5909), 1, - anon_sym_LPAREN, - ACTIONS(5911), 1, - anon_sym_DOLLAR, - ACTIONS(5913), 1, - sym__special_character, - ACTIONS(5915), 1, - anon_sym_DQUOTE, - ACTIONS(5919), 1, - aux_sym_number_token1, - ACTIONS(5921), 1, - aux_sym_number_token2, - ACTIONS(5923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5927), 1, - anon_sym_BQUOTE, - ACTIONS(5929), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5933), 1, - sym__comment_word, - ACTIONS(5935), 1, - sym_test_operator, - ACTIONS(5937), 1, - sym__empty_value, - ACTIONS(5939), 1, - sym__brace_start, - STATE(1240), 1, - aux_sym__literal_repeat1, - ACTIONS(5907), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5917), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1368), 2, - sym_concatenation, - sym_array, - STATE(915), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 1, - anon_sym_LF, - ACTIONS(1346), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [107876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 1, - anon_sym_LF, - ACTIONS(1342), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [107917] = 22, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5941), 1, - sym_word, - ACTIONS(5947), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_DOLLAR, - ACTIONS(5953), 1, - sym__special_character, - ACTIONS(5956), 1, - anon_sym_DQUOTE, - ACTIONS(5962), 1, - aux_sym_number_token1, - ACTIONS(5965), 1, - aux_sym_number_token2, - ACTIONS(5968), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5971), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5974), 1, - anon_sym_BQUOTE, - ACTIONS(5977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5983), 1, - sym_test_operator, - ACTIONS(5986), 1, - sym_extglob_pattern, - ACTIONS(5989), 1, - sym__brace_start, - STATE(4076), 1, - aux_sym__literal_repeat1, - STATE(4215), 1, - sym_concatenation, - ACTIONS(5944), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5959), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5980), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2276), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(4044), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107996] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3942), 1, - sym_word, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, - anon_sym_DOLLAR, - ACTIONS(3954), 1, - sym__special_character, - ACTIONS(3956), 1, - anon_sym_DQUOTE, - ACTIONS(3960), 1, - aux_sym_number_token1, - ACTIONS(3962), 1, - aux_sym_number_token2, - ACTIONS(3964), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, - anon_sym_BQUOTE, - ACTIONS(3973), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3977), 1, - sym_test_operator, - ACTIONS(3979), 1, - sym__brace_start, - ACTIONS(5992), 1, - anon_sym_RBRACE3, - STATE(3217), 1, - aux_sym__literal_repeat1, - ACTIONS(3944), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3958), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3975), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2242), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - STATE(3005), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108073] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 1, - anon_sym_LF, - ACTIONS(1326), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [108114] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5994), 1, - sym_word, - ACTIONS(5998), 1, - anon_sym_LPAREN, - ACTIONS(6000), 1, - anon_sym_DOLLAR, - ACTIONS(6002), 1, - sym__special_character, - ACTIONS(6004), 1, - anon_sym_DQUOTE, - ACTIONS(6008), 1, - aux_sym_number_token1, - ACTIONS(6010), 1, - aux_sym_number_token2, - ACTIONS(6012), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6014), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6016), 1, - anon_sym_BQUOTE, - ACTIONS(6018), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6022), 1, - sym__comment_word, - ACTIONS(6024), 1, - sym_test_operator, - ACTIONS(6026), 1, - sym__empty_value, - ACTIONS(6028), 1, - sym__brace_start, - STATE(2756), 1, - aux_sym__literal_repeat1, - ACTIONS(5996), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6006), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6020), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2951), 2, - sym_concatenation, - sym_array, - STATE(2717), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108193] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym__brace_start, - ACTIONS(5487), 1, - anon_sym_DQUOTE, - STATE(2952), 1, - sym_string, - ACTIONS(6032), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6030), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 19, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [108242] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym__brace_start, - ACTIONS(5487), 1, - anon_sym_DQUOTE, - STATE(2952), 1, - sym_string, - ACTIONS(6032), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6030), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 19, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [108291] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6034), 1, - sym_word, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_DOLLAR, - ACTIONS(6042), 1, - sym__special_character, - ACTIONS(6044), 1, - anon_sym_DQUOTE, - ACTIONS(6048), 1, - aux_sym_number_token1, - ACTIONS(6050), 1, - aux_sym_number_token2, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, - anon_sym_BQUOTE, - ACTIONS(6058), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6062), 1, - sym__comment_word, - ACTIONS(6064), 1, - sym_test_operator, - ACTIONS(6066), 1, - sym__empty_value, - ACTIONS(6068), 1, - sym__brace_start, - STATE(2483), 1, - aux_sym__literal_repeat1, - ACTIONS(6036), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6046), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6060), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2530), 2, - sym_concatenation, - sym_array, - STATE(2345), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108370] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5998), 1, - anon_sym_LPAREN, - ACTIONS(6000), 1, - anon_sym_DOLLAR, - ACTIONS(6004), 1, - anon_sym_DQUOTE, - ACTIONS(6008), 1, - aux_sym_number_token1, - ACTIONS(6010), 1, - aux_sym_number_token2, - ACTIONS(6012), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6014), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6016), 1, - anon_sym_BQUOTE, - ACTIONS(6018), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6022), 1, - sym__comment_word, - ACTIONS(6026), 1, - sym__empty_value, - ACTIONS(6028), 1, - sym__brace_start, - ACTIONS(6070), 1, - sym_word, - ACTIONS(6072), 1, - sym__special_character, - ACTIONS(6076), 1, - sym_test_operator, - STATE(2756), 1, - aux_sym__literal_repeat1, - ACTIONS(5996), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6020), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6074), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2951), 2, - sym_concatenation, - sym_array, - STATE(2786), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108449] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - aux_sym_number_token1, - ACTIONS(1527), 1, - aux_sym_number_token2, - ACTIONS(1531), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1547), 1, - sym__brace_start, - ACTIONS(6078), 1, - sym_word, - ACTIONS(6082), 1, - anon_sym_LPAREN, - ACTIONS(6084), 1, - sym__special_character, - ACTIONS(6086), 1, - anon_sym_DQUOTE, - ACTIONS(6090), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6092), 1, - anon_sym_BQUOTE, - ACTIONS(6094), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6098), 1, - sym__comment_word, - ACTIONS(6100), 1, - sym_test_operator, - ACTIONS(6102), 1, - sym__empty_value, - STATE(900), 1, - aux_sym__literal_repeat1, - ACTIONS(6080), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6088), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6096), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1137), 2, - sym_concatenation, - sym_array, - STATE(747), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108528] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1925), 1, - anon_sym_DOLLAR, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(5853), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_DQUOTE, - ACTIONS(5861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, - anon_sym_BQUOTE, - ACTIONS(5865), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5869), 1, - sym__comment_word, - ACTIONS(5873), 1, - sym__empty_value, - ACTIONS(6104), 1, - sym_word, - ACTIONS(6106), 1, - sym__special_character, - ACTIONS(6110), 1, - sym_test_operator, - STATE(1348), 1, - aux_sym__literal_repeat1, - ACTIONS(5851), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6108), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1376), 2, - sym_concatenation, - sym_array, - STATE(1188), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108607] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5673), 1, - anon_sym_LPAREN, - ACTIONS(5675), 1, - anon_sym_DOLLAR, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5697), 1, - sym__comment_word, - ACTIONS(5701), 1, - sym__empty_value, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(6112), 1, - sym_word, - ACTIONS(6114), 1, - sym__special_character, - ACTIONS(6118), 1, - sym_test_operator, - STATE(2788), 1, - aux_sym__literal_repeat1, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6116), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2975), 2, - sym_concatenation, - sym_array, - STATE(2883), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108686] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5813), 1, - sym__comment_word, - ACTIONS(5817), 1, - sym__empty_value, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(6120), 1, - sym_word, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6126), 1, - sym_test_operator, - STATE(1370), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6124), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1560), 2, - sym_concatenation, - sym_array, - STATE(1210), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108765] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1925), 1, - anon_sym_DOLLAR, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(5853), 1, - anon_sym_LPAREN, - ACTIONS(5857), 1, - anon_sym_DQUOTE, - ACTIONS(5861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, - anon_sym_BQUOTE, - ACTIONS(5865), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5869), 1, - sym__comment_word, - ACTIONS(5873), 1, - sym__empty_value, - ACTIONS(6128), 1, - sym_word, - ACTIONS(6130), 1, - sym__special_character, - ACTIONS(6134), 1, - sym_test_operator, - STATE(1348), 1, - aux_sym__literal_repeat1, - ACTIONS(5851), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6132), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1376), 2, - sym_concatenation, - sym_array, - STATE(892), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108844] = 21, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3942), 1, - sym_word, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, - anon_sym_DOLLAR, - ACTIONS(3954), 1, - sym__special_character, - ACTIONS(3956), 1, - anon_sym_DQUOTE, - ACTIONS(3960), 1, - aux_sym_number_token1, - ACTIONS(3962), 1, - aux_sym_number_token2, - ACTIONS(3964), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, - anon_sym_BQUOTE, - ACTIONS(3973), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3977), 1, - sym_test_operator, - ACTIONS(3979), 1, - sym__brace_start, - ACTIONS(6136), 1, - anon_sym_RBRACE3, - STATE(3217), 1, - aux_sym__literal_repeat1, - ACTIONS(3944), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3958), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3975), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2242), 3, - sym_concatenation, - sym_array, - aux_sym__expansion_body_repeat1, - STATE(3005), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108921] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_DOLLAR, - ACTIONS(3094), 1, - sym__special_character, - ACTIONS(3096), 1, - anon_sym_DQUOTE, - ACTIONS(3100), 1, - aux_sym_number_token1, - ACTIONS(3102), 1, - aux_sym_number_token2, - ACTIONS(3104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3106), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3108), 1, - anon_sym_BQUOTE, - ACTIONS(3110), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3120), 1, - sym__brace_start, - ACTIONS(6138), 1, - sym_word, - ACTIONS(6140), 1, - anon_sym_LPAREN, - ACTIONS(6144), 1, - sym__comment_word, - ACTIONS(6146), 1, - sym_test_operator, - ACTIONS(6148), 1, - sym__empty_value, - STATE(1976), 1, - aux_sym__literal_repeat1, - ACTIONS(3090), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3112), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6142), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2035), 2, - sym_concatenation, - sym_array, - STATE(1581), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109000] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6150), 1, - sym__special_character, - STATE(2291), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 14, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1357), 17, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [109045] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6155), 1, - anon_sym_LF, - ACTIONS(6153), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [109086] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6157), 1, - sym_word, - ACTIONS(6161), 1, - anon_sym_LPAREN, - ACTIONS(6163), 1, - anon_sym_DOLLAR, - ACTIONS(6165), 1, - sym__special_character, - ACTIONS(6167), 1, - anon_sym_DQUOTE, - ACTIONS(6171), 1, - aux_sym_number_token1, - ACTIONS(6173), 1, - aux_sym_number_token2, - ACTIONS(6175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6177), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6179), 1, - anon_sym_BQUOTE, - ACTIONS(6181), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6185), 1, - sym__comment_word, - ACTIONS(6187), 1, - sym_test_operator, - ACTIONS(6189), 1, - sym__empty_value, - ACTIONS(6191), 1, - sym__brace_start, - STATE(3511), 1, - aux_sym__literal_repeat1, - ACTIONS(6159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6169), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6183), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3572), 2, - sym_concatenation, - sym_array, - STATE(3430), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109165] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6193), 1, - sym_word, - ACTIONS(6197), 1, - anon_sym_LPAREN, - ACTIONS(6199), 1, - anon_sym_DOLLAR, - ACTIONS(6201), 1, - sym__special_character, - ACTIONS(6203), 1, - anon_sym_DQUOTE, - ACTIONS(6207), 1, - aux_sym_number_token1, - ACTIONS(6209), 1, - aux_sym_number_token2, - ACTIONS(6211), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6213), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 1, - anon_sym_BQUOTE, - ACTIONS(6217), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6221), 1, - sym__comment_word, - ACTIONS(6223), 1, - sym_test_operator, - ACTIONS(6225), 1, - sym__empty_value, - ACTIONS(6227), 1, - sym__brace_start, - STATE(1130), 1, - aux_sym__literal_repeat1, - ACTIONS(6195), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6205), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6219), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1299), 2, - sym_concatenation, - sym_array, - STATE(779), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109244] = 9, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6239), 1, - sym_file_descriptor, - ACTIONS(6242), 1, - sym_variable_name, - STATE(4396), 1, - sym_subscript, - ACTIONS(6236), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2295), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(6229), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(6233), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(6231), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [109296] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6245), 1, - anon_sym_EQ, - ACTIONS(5549), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5553), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [109338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4374), 15, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4376), 17, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [109378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4370), 15, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4372), 17, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [109418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1242), 15, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_COLON_DASH, - anon_sym_COLON_QMARK, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1244), 17, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [109458] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6247), 1, - anon_sym_EQ, - ACTIONS(5549), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5553), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [109500] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5755), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(6249), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6253), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6251), 17, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [109543] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6255), 1, - anon_sym_RPAREN, - ACTIONS(6257), 1, - sym__special_character, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2374), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109616] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5887), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(6259), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6263), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6261), 17, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [109659] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1304), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [109698] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1316), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [109737] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6265), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2325), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109810] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6267), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109883] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6269), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2375), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109956] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym__brace_start, - ACTIONS(6273), 1, - anon_sym_DQUOTE, - STATE(3125), 1, - sym_string, - ACTIONS(6275), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6271), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [110003] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2059), 1, - anon_sym_LF, - ACTIONS(5513), 1, - anon_sym_DOLLAR, - ACTIONS(5519), 1, - anon_sym_DQUOTE, - ACTIONS(5522), 1, - aux_sym_number_token1, - ACTIONS(5525), 1, - aux_sym_number_token2, - ACTIONS(5528), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5531), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5534), 1, - anon_sym_BQUOTE, - ACTIONS(5537), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5546), 1, - sym__brace_start, - ACTIONS(6280), 1, - sym__special_character, - ACTIONS(6283), 1, - sym_test_operator, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(5510), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5540), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2310), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(6277), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(3139), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110074] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1304), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [110113] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6286), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110186] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6288), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2307), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110259] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym__brace_start, - ACTIONS(6273), 1, - anon_sym_DQUOTE, - STATE(3125), 1, - sym_string, - ACTIONS(6275), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6271), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [110306] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6153), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6155), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [110345] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1336), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [110384] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6290), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110457] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [110504] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5661), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5663), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [110543] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1316), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [110582] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6292), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110655] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5571), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5573), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [110694] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6294), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2328), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110767] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6296), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2312), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110840] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6298), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110913] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [110960] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6300), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2350), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111033] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6302), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111106] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6304), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111179] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6306), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2321), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111252] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1320), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [111291] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5571), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5573), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [111330] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1328), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [111369] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6308), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111442] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6310), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2383), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111515] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2376), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6312), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3841), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3843), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [111558] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1270), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [111597] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1296), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [111636] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5665), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5667), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [111675] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5661), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5663), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [111714] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6314), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2357), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111787] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1270), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [111826] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1296), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [111865] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1270), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [111904] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2377), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6312), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3837), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3839), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [111947] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6153), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6155), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [111986] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6316), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2329), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112059] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6318), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112132] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2094), 1, - anon_sym_RPAREN, - ACTIONS(6320), 1, - sym_word, - ACTIONS(6326), 1, - anon_sym_DOLLAR, - ACTIONS(6329), 1, - sym__special_character, - ACTIONS(6332), 1, - anon_sym_DQUOTE, - ACTIONS(6338), 1, - aux_sym_number_token1, - ACTIONS(6341), 1, - aux_sym_number_token2, - ACTIONS(6344), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6347), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6350), 1, - anon_sym_BQUOTE, - ACTIONS(6353), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6359), 1, - sym_test_operator, - ACTIONS(6362), 1, - sym__brace_start, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(6323), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6335), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6356), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112205] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6365), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112278] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1270), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [112317] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1320), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [112356] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1344), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [112395] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1348), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [112434] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1344), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [112473] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6367), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2365), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112546] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6369), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112619] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1324), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [112658] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1328), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [112697] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5665), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5667), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [112736] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1348), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [112775] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1274), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [112814] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2376), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6312), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3989), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3991), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [112857] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6371), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2370), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112930] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6373), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113003] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1336), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [113042] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1332), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [113081] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2377), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6312), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3985), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3987), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [113124] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1324), 21, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [113163] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6375), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113236] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5887), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(6249), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6253), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6251), 17, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [113279] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6377), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2317), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113352] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1332), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [113391] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6379), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113464] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6381), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113537] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6312), 1, - aux_sym_concatenation_token1, - ACTIONS(6383), 1, - sym__concat, - STATE(2384), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1248), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [113582] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6312), 1, - aux_sym_concatenation_token1, - ACTIONS(6385), 1, - sym__concat, - STATE(2384), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [113627] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2045), 1, - anon_sym_LF, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5487), 1, - anon_sym_DQUOTE, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5493), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5497), 1, - anon_sym_BQUOTE, - ACTIONS(5499), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6389), 1, - sym__special_character, - ACTIONS(6391), 1, - sym_test_operator, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(5479), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5501), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2310), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(6387), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(3139), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113698] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6393), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2334), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113771] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2049), 1, - anon_sym_LF, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5487), 1, - anon_sym_DQUOTE, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5493), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5497), 1, - anon_sym_BQUOTE, - ACTIONS(5499), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6389), 1, - sym__special_character, - ACTIONS(6391), 1, - sym_test_operator, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(5479), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5501), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2310), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(6387), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(3139), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113842] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1274), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [113881] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2376), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6312), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1244), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [113924] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4234), 1, - sym_word, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4262), 1, - sym_test_operator, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(6257), 1, - sym__special_character, - ACTIONS(6395), 1, - anon_sym_RPAREN, - STATE(3355), 1, - aux_sym__literal_repeat1, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2349), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3102), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113997] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2384), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6397), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [114040] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5755), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(6259), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6263), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6261), 17, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [114083] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5793), 1, - sym__special_character, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(6400), 1, - sym_word, - ACTIONS(6404), 1, - sym_test_operator, - STATE(1443), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6402), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(626), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1580), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114153] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym_file_descriptor, - ACTIONS(6408), 1, - anon_sym_DQUOTE, - STATE(3535), 1, - sym_string, - ACTIONS(6410), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6406), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [114199] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym__brace_start, - ACTIONS(5487), 1, - anon_sym_DQUOTE, - STATE(2952), 1, - sym_string, - ACTIONS(6032), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6030), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_LF, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [114245] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [114283] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym__brace_start, - ACTIONS(5487), 1, - anon_sym_DQUOTE, - STATE(2952), 1, - sym_string, - ACTIONS(6032), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6030), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_LF, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [114329] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(4170), 1, - sym__special_character, - ACTIONS(6412), 1, - sym_word, - ACTIONS(6416), 1, - sym_test_operator, - ACTIONS(6418), 1, - sym_regex, - STATE(1139), 1, - aux_sym__literal_repeat1, - STATE(1278), 1, - sym_concatenation, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6414), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1377), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114401] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(4217), 1, - sym__special_character, - ACTIONS(6418), 1, - sym_regex, - ACTIONS(6420), 1, - sym_word, - ACTIONS(6424), 1, - sym_test_operator, - STATE(1139), 1, - aux_sym__literal_repeat1, - STATE(1278), 1, - sym_concatenation, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6422), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(935), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114473] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6040), 1, - anon_sym_DOLLAR, - ACTIONS(6042), 1, - sym__special_character, - ACTIONS(6044), 1, - anon_sym_DQUOTE, - ACTIONS(6048), 1, - aux_sym_number_token1, - ACTIONS(6050), 1, - aux_sym_number_token2, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, - anon_sym_BQUOTE, - ACTIONS(6058), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6068), 1, - sym__brace_start, - ACTIONS(6426), 1, - sym_word, - ACTIONS(6430), 1, - sym_test_operator, - STATE(2495), 1, - aux_sym__literal_repeat1, - ACTIONS(6036), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6060), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6428), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1467), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2368), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114543] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6040), 1, - anon_sym_DOLLAR, - ACTIONS(6042), 1, - sym__special_character, - ACTIONS(6044), 1, - anon_sym_DQUOTE, - ACTIONS(6048), 1, - aux_sym_number_token1, - ACTIONS(6050), 1, - aux_sym_number_token2, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, - anon_sym_BQUOTE, - ACTIONS(6058), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6068), 1, - sym__brace_start, - ACTIONS(6426), 1, - sym_word, - ACTIONS(6430), 1, - sym_test_operator, - STATE(2495), 1, - aux_sym__literal_repeat1, - ACTIONS(6036), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6060), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6428), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1520), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2368), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114613] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [114651] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2697), 1, - sym_word, - ACTIONS(2701), 1, - anon_sym_DOLLAR, - ACTIONS(2707), 1, - aux_sym_number_token1, - ACTIONS(2709), 1, - aux_sym_number_token2, - ACTIONS(2713), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2723), 1, - sym__brace_start, - ACTIONS(6434), 1, - sym__special_character, - ACTIONS(6436), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6442), 1, - anon_sym_BQUOTE, - ACTIONS(6444), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6448), 1, - sym_test_operator, - STATE(1386), 1, - aux_sym__literal_repeat1, - ACTIONS(6432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6438), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6446), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(522), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1179), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114721] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2697), 1, - sym_word, - ACTIONS(2701), 1, - anon_sym_DOLLAR, - ACTIONS(2707), 1, - aux_sym_number_token1, - ACTIONS(2709), 1, - aux_sym_number_token2, - ACTIONS(2713), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2723), 1, - sym__brace_start, - ACTIONS(6434), 1, - sym__special_character, - ACTIONS(6436), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6442), 1, - anon_sym_BQUOTE, - ACTIONS(6444), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6448), 1, - sym_test_operator, - STATE(1386), 1, - aux_sym__literal_repeat1, - ACTIONS(6432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6438), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6446), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(526), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1179), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114791] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6450), 1, - sym_word, - ACTIONS(6454), 1, - sym_test_operator, - ACTIONS(6456), 1, - sym_extglob_pattern, - STATE(4071), 1, - aux_sym__literal_repeat1, - STATE(4285), 1, - sym_concatenation, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6452), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4042), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114863] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [114901] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5911), 1, - anon_sym_DOLLAR, - ACTIONS(5913), 1, - sym__special_character, - ACTIONS(5915), 1, - anon_sym_DQUOTE, - ACTIONS(5919), 1, - aux_sym_number_token1, - ACTIONS(5921), 1, - aux_sym_number_token2, - ACTIONS(5923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5927), 1, - anon_sym_BQUOTE, - ACTIONS(5929), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5939), 1, - sym__brace_start, - ACTIONS(6458), 1, - sym_word, - ACTIONS(6462), 1, - sym_test_operator, - STATE(1204), 1, - aux_sym__literal_repeat1, - ACTIONS(5907), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6460), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(497), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(942), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114971] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(6408), 1, - anon_sym_DQUOTE, - STATE(3535), 1, - sym_string, - ACTIONS(6410), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6406), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [115017] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(442), 1, - anon_sym_DOLLAR, - ACTIONS(446), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - aux_sym_number_token1, - ACTIONS(452), 1, - aux_sym_number_token2, - ACTIONS(454), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(456), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(458), 1, - anon_sym_BQUOTE, - ACTIONS(460), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(470), 1, - sym__brace_start, - ACTIONS(4226), 1, - sym__special_character, - ACTIONS(6464), 1, - sym_word, - ACTIONS(6468), 1, - sym_test_operator, - ACTIONS(6470), 1, - sym_regex, - STATE(792), 1, - aux_sym__literal_repeat1, - STATE(950), 1, - sym_concatenation, - ACTIONS(406), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(462), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6466), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(681), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115089] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5711), 1, - anon_sym_DOLLAR, - ACTIONS(5713), 1, - sym__special_character, - ACTIONS(5715), 1, - anon_sym_DQUOTE, - ACTIONS(5719), 1, - aux_sym_number_token1, - ACTIONS(5721), 1, - aux_sym_number_token2, - ACTIONS(5723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5727), 1, - anon_sym_BQUOTE, - ACTIONS(5729), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5739), 1, - sym__brace_start, - ACTIONS(6472), 1, - sym_word, - ACTIONS(6476), 1, - sym_test_operator, - STATE(1438), 1, - aux_sym__literal_repeat1, - ACTIONS(5707), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5731), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6474), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(520), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1129), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115159] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6478), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_DOLLAR, - ACTIONS(6484), 1, - sym__special_character, - ACTIONS(6486), 1, - anon_sym_DQUOTE, - ACTIONS(6490), 1, - aux_sym_number_token1, - ACTIONS(6492), 1, - aux_sym_number_token2, - ACTIONS(6494), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6496), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6498), 1, - anon_sym_BQUOTE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6504), 1, - sym_test_operator, - ACTIONS(6506), 1, - sym__brace_start, - STATE(1968), 1, - aux_sym__literal_repeat1, - ACTIONS(6480), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6488), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6502), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(620), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1620), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115229] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6478), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_DOLLAR, - ACTIONS(6484), 1, - sym__special_character, - ACTIONS(6486), 1, - anon_sym_DQUOTE, - ACTIONS(6490), 1, - aux_sym_number_token1, - ACTIONS(6492), 1, - aux_sym_number_token2, - ACTIONS(6494), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6496), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6498), 1, - anon_sym_BQUOTE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6504), 1, - sym_test_operator, - ACTIONS(6506), 1, - sym__brace_start, - STATE(1968), 1, - aux_sym__literal_repeat1, - ACTIONS(6480), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6488), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6502), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(627), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1620), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115299] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1296), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [115337] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5793), 1, - sym__special_character, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(6400), 1, - sym_word, - ACTIONS(6404), 1, - sym_test_operator, - STATE(1443), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6402), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(622), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1580), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115407] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1043), 1, - anon_sym_DOLLAR, - ACTIONS(1047), 1, - anon_sym_DQUOTE, - ACTIONS(1051), 1, - aux_sym_number_token1, - ACTIONS(1053), 1, - aux_sym_number_token2, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, - anon_sym_BQUOTE, - ACTIONS(1061), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym__brace_start, - ACTIONS(3218), 1, - sym__special_character, - ACTIONS(6508), 1, - sym_word, - ACTIONS(6512), 1, - sym_test_operator, - ACTIONS(6514), 1, - sym_regex, - STATE(1826), 1, - aux_sym__literal_repeat1, - STATE(2014), 1, - sym_concatenation, - ACTIONS(1033), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6510), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1460), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115479] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [115517] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6516), 1, - sym_word, - ACTIONS(6520), 1, - sym_test_operator, - ACTIONS(6522), 1, - sym_extglob_pattern, - STATE(4083), 1, - aux_sym__literal_repeat1, - STATE(4259), 1, - sym_concatenation, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6518), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4025), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115589] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5711), 1, - anon_sym_DOLLAR, - ACTIONS(5713), 1, - sym__special_character, - ACTIONS(5715), 1, - anon_sym_DQUOTE, - ACTIONS(5719), 1, - aux_sym_number_token1, - ACTIONS(5721), 1, - aux_sym_number_token2, - ACTIONS(5723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5727), 1, - anon_sym_BQUOTE, - ACTIONS(5729), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5739), 1, - sym__brace_start, - ACTIONS(6472), 1, - sym_word, - ACTIONS(6476), 1, - sym_test_operator, - STATE(1438), 1, - aux_sym__literal_repeat1, - ACTIONS(5707), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5731), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6474), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(517), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1129), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115659] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [115697] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [115735] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [115773] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5911), 1, - anon_sym_DOLLAR, - ACTIONS(5913), 1, - sym__special_character, - ACTIONS(5915), 1, - anon_sym_DQUOTE, - ACTIONS(5919), 1, - aux_sym_number_token1, - ACTIONS(5921), 1, - aux_sym_number_token2, - ACTIONS(5923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5927), 1, - anon_sym_BQUOTE, - ACTIONS(5929), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5939), 1, - sym__brace_start, - ACTIONS(6458), 1, - sym_word, - ACTIONS(6462), 1, - sym_test_operator, - STATE(1204), 1, - aux_sym__literal_repeat1, - ACTIONS(5907), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6460), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(500), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(942), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115843] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2470), 1, - sym_word, - ACTIONS(2474), 1, - anon_sym_DOLLAR, - ACTIONS(2480), 1, - aux_sym_number_token1, - ACTIONS(2482), 1, - aux_sym_number_token2, - ACTIONS(2486), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2496), 1, - sym__brace_start, - ACTIONS(6526), 1, - sym__special_character, - ACTIONS(6528), 1, - anon_sym_DQUOTE, - ACTIONS(6532), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6534), 1, - anon_sym_BQUOTE, - ACTIONS(6536), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6540), 1, - sym_test_operator, - STATE(1254), 1, - aux_sym__literal_repeat1, - ACTIONS(6524), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6530), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6538), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(507), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(913), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115913] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5477), 1, - sym_word, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6544), 1, - sym__special_character, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, - anon_sym_BQUOTE, - ACTIONS(6554), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6558), 1, - sym_test_operator, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(6542), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6548), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6556), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2233), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2811), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115983] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2470), 1, - sym_word, - ACTIONS(2474), 1, - anon_sym_DOLLAR, - ACTIONS(2480), 1, - aux_sym_number_token1, - ACTIONS(2482), 1, - aux_sym_number_token2, - ACTIONS(2486), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2496), 1, - sym__brace_start, - ACTIONS(6526), 1, - sym__special_character, - ACTIONS(6528), 1, - anon_sym_DQUOTE, - ACTIONS(6532), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6534), 1, - anon_sym_BQUOTE, - ACTIONS(6536), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6540), 1, - sym_test_operator, - STATE(1254), 1, - aux_sym__literal_repeat1, - ACTIONS(6524), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6530), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6538), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(510), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(913), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116053] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3471), 1, - sym_word, - ACTIONS(6562), 1, - sym__special_character, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6576), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6566), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(649), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116123] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [116161] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3471), 1, - sym_word, - ACTIONS(6562), 1, - sym__special_character, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6576), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6566), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(647), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116231] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6199), 1, - anon_sym_DOLLAR, - ACTIONS(6201), 1, - sym__special_character, - ACTIONS(6203), 1, - anon_sym_DQUOTE, - ACTIONS(6207), 1, - aux_sym_number_token1, - ACTIONS(6209), 1, - aux_sym_number_token2, - ACTIONS(6211), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6213), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 1, - anon_sym_BQUOTE, - ACTIONS(6217), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6227), 1, - sym__brace_start, - ACTIONS(6578), 1, - sym_word, - ACTIONS(6582), 1, - sym_test_operator, - STATE(1140), 1, - aux_sym__literal_repeat1, - ACTIONS(6195), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6219), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6580), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(469), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(784), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116301] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5477), 1, - sym_word, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6544), 1, - sym__special_character, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, - anon_sym_BQUOTE, - ACTIONS(6554), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6558), 1, - sym_test_operator, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(6542), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6548), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6556), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2222), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2811), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116371] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6199), 1, - anon_sym_DOLLAR, - ACTIONS(6201), 1, - sym__special_character, - ACTIONS(6203), 1, - anon_sym_DQUOTE, - ACTIONS(6207), 1, - aux_sym_number_token1, - ACTIONS(6209), 1, - aux_sym_number_token2, - ACTIONS(6211), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6213), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 1, - anon_sym_BQUOTE, - ACTIONS(6217), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6227), 1, - sym__brace_start, - ACTIONS(6578), 1, - sym_word, - ACTIONS(6582), 1, - sym_test_operator, - STATE(1140), 1, - aux_sym__literal_repeat1, - ACTIONS(6195), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6219), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6580), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(468), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(784), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116441] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1320), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [116479] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5419), 1, - sym__special_character, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6584), 1, - sym_word, - ACTIONS(6588), 1, - sym_test_operator, - ACTIONS(6590), 1, - sym_extglob_pattern, - STATE(4140), 1, - aux_sym__literal_repeat1, - STATE(4338), 1, - sym_concatenation, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6586), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116551] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3799), 1, - sym_word, - ACTIONS(3803), 1, - anon_sym_DOLLAR, - ACTIONS(3805), 1, - sym__special_character, - ACTIONS(3807), 1, - anon_sym_DQUOTE, - ACTIONS(3811), 1, - aux_sym_number_token1, - ACTIONS(3813), 1, - aux_sym_number_token2, - ACTIONS(3815), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3817), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3819), 1, - anon_sym_BQUOTE, - ACTIONS(3821), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3825), 1, - sym_test_operator, - ACTIONS(3827), 1, - sym__brace_start, - STATE(2178), 1, - aux_sym__literal_repeat1, - ACTIONS(3801), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3809), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3823), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(746), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2020), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116621] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [116659] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_DOLLAR, - ACTIONS(566), 1, - anon_sym_DQUOTE, - ACTIONS(570), 1, - aux_sym_number_token1, - ACTIONS(572), 1, - aux_sym_number_token2, - ACTIONS(574), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(576), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(578), 1, - anon_sym_BQUOTE, - ACTIONS(580), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(4209), 1, - sym__special_character, - ACTIONS(6592), 1, - sym_word, - ACTIONS(6596), 1, - sym_test_operator, - ACTIONS(6598), 1, - sym_regex, - STATE(907), 1, - aux_sym__literal_repeat1, - STATE(1146), 1, - sym_concatenation, - ACTIONS(546), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(582), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6594), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(729), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116731] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(5891), 1, - sym__special_character, - ACTIONS(6600), 1, - sym_word, - ACTIONS(6604), 1, - sym_test_operator, - STATE(1443), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6602), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(519), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1122), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116801] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3014), 1, - sym_word, - ACTIONS(3018), 1, - anon_sym_DOLLAR, - ACTIONS(3024), 1, - aux_sym_number_token1, - ACTIONS(3026), 1, - aux_sym_number_token2, - ACTIONS(3030), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3040), 1, - sym__brace_start, - ACTIONS(6608), 1, - sym__special_character, - ACTIONS(6610), 1, - anon_sym_DQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, - anon_sym_BQUOTE, - ACTIONS(6618), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6622), 1, - sym_test_operator, - STATE(1555), 1, - aux_sym__literal_repeat1, - ACTIONS(6606), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6612), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6620), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(558), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1212), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116871] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3014), 1, - sym_word, - ACTIONS(3018), 1, - anon_sym_DOLLAR, - ACTIONS(3024), 1, - aux_sym_number_token1, - ACTIONS(3026), 1, - aux_sym_number_token2, - ACTIONS(3030), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3040), 1, - sym__brace_start, - ACTIONS(6608), 1, - sym__special_character, - ACTIONS(6610), 1, - anon_sym_DQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, - anon_sym_BQUOTE, - ACTIONS(6618), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6622), 1, - sym_test_operator, - STATE(1555), 1, - aux_sym__literal_repeat1, - ACTIONS(6606), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6612), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6620), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(568), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1212), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116941] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3799), 1, - sym_word, - ACTIONS(3803), 1, - anon_sym_DOLLAR, - ACTIONS(3805), 1, - sym__special_character, - ACTIONS(3807), 1, - anon_sym_DQUOTE, - ACTIONS(3811), 1, - aux_sym_number_token1, - ACTIONS(3813), 1, - aux_sym_number_token2, - ACTIONS(3815), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3817), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3819), 1, - anon_sym_BQUOTE, - ACTIONS(3821), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3825), 1, - sym_test_operator, - ACTIONS(3827), 1, - sym__brace_start, - STATE(2178), 1, - aux_sym__literal_repeat1, - ACTIONS(3801), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3809), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3823), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(740), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2020), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117011] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(5891), 1, - sym__special_character, - ACTIONS(6600), 1, - sym_word, - ACTIONS(6604), 1, - sym_test_operator, - STATE(1443), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6602), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(530), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1122), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117081] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6387), 1, - sym_word, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, - anon_sym_BQUOTE, - ACTIONS(6554), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6624), 1, - sym__special_character, - ACTIONS(6628), 1, - sym_test_operator, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(6542), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6626), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2380), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3139), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117151] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6387), 1, - sym_word, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, - anon_sym_BQUOTE, - ACTIONS(6554), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6624), 1, - sym__special_character, - ACTIONS(6628), 1, - sym_test_operator, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(6542), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6626), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2378), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3139), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117221] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5477), 1, - sym_word, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6544), 1, - sym__special_character, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, - anon_sym_BQUOTE, - ACTIONS(6554), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6558), 1, - sym_test_operator, - STATE(3090), 1, - aux_sym__literal_repeat1, - ACTIONS(6542), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6548), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6556), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2192), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2811), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117291] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [117329] = 20, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(49), 1, - aux_sym_number_token1, - ACTIONS(51), 1, - aux_sym_number_token2, - ACTIONS(53), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, - anon_sym_BQUOTE, - ACTIONS(59), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(4181), 1, - sym__special_character, - ACTIONS(6630), 1, - sym_word, - ACTIONS(6634), 1, - sym_test_operator, - ACTIONS(6636), 1, - sym_regex, - STATE(1079), 1, - aux_sym__literal_repeat1, - STATE(1342), 1, - sym_concatenation, - ACTIONS(13), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(61), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6632), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(790), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117401] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [117439] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2909), 1, - sym_word, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6638), 1, - sym__special_character, - ACTIONS(6642), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6640), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(567), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1339), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117509] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2909), 1, - sym_word, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6638), 1, - sym__special_character, - ACTIONS(6642), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6640), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(545), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1339), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117579] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [117617] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [117655] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym__brace_start, - ACTIONS(6646), 1, - anon_sym_DQUOTE, - STATE(3183), 1, - sym_string, - ACTIONS(6648), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6644), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [117701] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [117739] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(4160), 1, - sym__special_character, - ACTIONS(6418), 1, - sym_regex, - ACTIONS(6650), 1, - sym_word, - ACTIONS(6654), 1, - sym_test_operator, - STATE(1139), 1, - aux_sym__literal_repeat1, - STATE(1278), 1, - sym_concatenation, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6652), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(800), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117811] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [117849] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3068), 1, - sym_word, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6656), 1, - sym__special_character, - ACTIONS(6660), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6658), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(600), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1375), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117919] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym__brace_start, - ACTIONS(6646), 1, - anon_sym_DQUOTE, - STATE(3183), 1, - sym_string, - ACTIONS(6648), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6644), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [117965] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6662), 1, - sym_word, - ACTIONS(6666), 1, - sym_test_operator, - STATE(1443), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6664), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(550), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1287), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118035] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5631), 1, - anon_sym_DOLLAR, - ACTIONS(5633), 1, - sym__special_character, - ACTIONS(5635), 1, - anon_sym_DQUOTE, - ACTIONS(5639), 1, - aux_sym_number_token1, - ACTIONS(5641), 1, - aux_sym_number_token2, - ACTIONS(5643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5645), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, - anon_sym_BQUOTE, - ACTIONS(5649), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5659), 1, - sym__brace_start, - ACTIONS(6668), 1, - sym_word, - ACTIONS(6672), 1, - sym_test_operator, - STATE(2134), 1, - aux_sym__literal_repeat1, - ACTIONS(5627), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5651), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6670), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(670), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1891), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118105] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(6122), 1, - sym__special_character, - ACTIONS(6662), 1, - sym_word, - ACTIONS(6666), 1, - sym_test_operator, - STATE(1443), 1, - aux_sym__literal_repeat1, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6664), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(542), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1287), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118175] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [118213] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1332), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [118251] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [118297] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym_file_descriptor, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LF, - anon_sym_LT_LT_LT, - [118343] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6676), 1, - anon_sym_DQUOTE, - STATE(3521), 1, - sym_string, - ACTIONS(1213), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(6678), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6674), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [118389] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1324), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [118427] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6676), 1, - anon_sym_DQUOTE, - STATE(3521), 1, - sym_string, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(6678), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6674), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [118473] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3068), 1, - sym_word, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6656), 1, - sym__special_character, - ACTIONS(6660), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6658), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(601), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1375), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118543] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6680), 1, - sym_word, - ACTIONS(6684), 1, - anon_sym_DOLLAR, - ACTIONS(6686), 1, - sym__special_character, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, - aux_sym_number_token1, - ACTIONS(6694), 1, - aux_sym_number_token2, - ACTIONS(6696), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6698), 1, - anon_sym_RBRACE3, - ACTIONS(6700), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6702), 1, - anon_sym_BQUOTE, - ACTIONS(6704), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6708), 1, - sym_test_operator, - ACTIONS(6710), 1, - sym__brace_start, - STATE(4107), 1, - aux_sym__literal_repeat1, - STATE(4327), 1, - sym_concatenation, - ACTIONS(6682), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6690), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6706), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(4053), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118615] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5631), 1, - anon_sym_DOLLAR, - ACTIONS(5633), 1, - sym__special_character, - ACTIONS(5635), 1, - anon_sym_DQUOTE, - ACTIONS(5639), 1, - aux_sym_number_token1, - ACTIONS(5641), 1, - aux_sym_number_token2, - ACTIONS(5643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5645), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, - anon_sym_BQUOTE, - ACTIONS(5649), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5659), 1, - sym__brace_start, - ACTIONS(6668), 1, - sym_word, - ACTIONS(6672), 1, - sym_test_operator, - STATE(2134), 1, - aux_sym__literal_repeat1, - ACTIONS(5627), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5651), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6670), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(671), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1891), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118685] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6684), 1, - anon_sym_DOLLAR, - ACTIONS(6686), 1, - sym__special_character, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, - aux_sym_number_token1, - ACTIONS(6694), 1, - aux_sym_number_token2, - ACTIONS(6696), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6700), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6702), 1, - anon_sym_BQUOTE, - ACTIONS(6704), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6710), 1, - sym__brace_start, - ACTIONS(6712), 1, - sym_word, - ACTIONS(6716), 1, - anon_sym_RBRACE3, - ACTIONS(6718), 1, - sym_test_operator, - STATE(4119), 1, - aux_sym__literal_repeat1, - STATE(4322), 1, - sym_concatenation, - ACTIONS(6682), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6706), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6714), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4061), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118757] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3687), 1, - sym_word, - ACTIONS(3691), 1, - anon_sym_DOLLAR, - ACTIONS(3695), 1, - anon_sym_DQUOTE, - ACTIONS(3699), 1, - aux_sym_number_token1, - ACTIONS(3701), 1, - aux_sym_number_token2, - ACTIONS(3703), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3705), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3707), 1, - anon_sym_BQUOTE, - ACTIONS(3709), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3713), 1, - sym_test_operator, - ACTIONS(3715), 1, - sym__brace_start, - ACTIONS(6720), 1, - sym__special_character, - STATE(2094), 1, - aux_sym__literal_repeat1, - ACTIONS(3689), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3697), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3711), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(685), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1763), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118827] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3687), 1, - sym_word, - ACTIONS(3691), 1, - anon_sym_DOLLAR, - ACTIONS(3695), 1, - anon_sym_DQUOTE, - ACTIONS(3699), 1, - aux_sym_number_token1, - ACTIONS(3701), 1, - aux_sym_number_token2, - ACTIONS(3703), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3705), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3707), 1, - anon_sym_BQUOTE, - ACTIONS(3709), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3713), 1, - sym_test_operator, - ACTIONS(3715), 1, - sym__brace_start, - ACTIONS(6720), 1, - sym__special_character, - STATE(2094), 1, - aux_sym__literal_repeat1, - ACTIONS(3689), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3697), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3711), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(682), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1763), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118897] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3068), 1, - sym_word, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6656), 1, - sym__special_character, - ACTIONS(6660), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6658), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(594), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1375), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118967] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(3068), 1, - sym_word, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6656), 1, - sym__special_character, - ACTIONS(6660), 1, - sym_test_operator, - STATE(1519), 1, - aux_sym__literal_repeat1, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6658), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(573), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1375), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [119037] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6722), 1, - sym_word, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6728), 1, - sym__special_character, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6748), 1, - sym_test_operator, - ACTIONS(6750), 1, - sym__brace_start, - STATE(2813), 1, - aux_sym__literal_repeat1, - STATE(3053), 1, - sym_concatenation, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6732), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2971), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [119106] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6752), 1, - sym_word, - ACTIONS(6756), 1, - anon_sym_DOLLAR, - ACTIONS(6758), 1, - sym__special_character, - ACTIONS(6760), 1, - anon_sym_DQUOTE, - ACTIONS(6764), 1, - aux_sym_number_token1, - ACTIONS(6766), 1, - aux_sym_number_token2, - ACTIONS(6768), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, - anon_sym_BQUOTE, - ACTIONS(6774), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6778), 1, - sym_test_operator, - ACTIONS(6780), 1, - sym__brace_start, - STATE(2864), 1, - aux_sym__literal_repeat1, - STATE(3012), 1, - sym_concatenation, - ACTIONS(6754), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6762), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6776), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2894), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [119175] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6756), 1, - anon_sym_DOLLAR, - ACTIONS(6758), 1, - sym__special_character, - ACTIONS(6760), 1, - anon_sym_DQUOTE, - ACTIONS(6764), 1, - aux_sym_number_token1, - ACTIONS(6766), 1, - aux_sym_number_token2, - ACTIONS(6768), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, - anon_sym_BQUOTE, - ACTIONS(6774), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, - sym__brace_start, - ACTIONS(6782), 1, - sym_word, - ACTIONS(6786), 1, - sym_test_operator, - STATE(2841), 1, - aux_sym__literal_repeat1, - STATE(3069), 1, - sym_concatenation, - ACTIONS(6754), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6784), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2890), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [119244] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6788), 1, - sym_word, - ACTIONS(6792), 1, - anon_sym_DOLLAR, - ACTIONS(6794), 1, - sym__special_character, - ACTIONS(6796), 1, - anon_sym_DQUOTE, - ACTIONS(6800), 1, - aux_sym_number_token1, - ACTIONS(6802), 1, - aux_sym_number_token2, - ACTIONS(6804), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6806), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6808), 1, - anon_sym_BQUOTE, - ACTIONS(6810), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6814), 1, - sym_test_operator, - ACTIONS(6816), 1, - sym__brace_start, - STATE(3969), 1, - aux_sym__literal_repeat1, - STATE(4081), 1, - sym_concatenation, - ACTIONS(6790), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6798), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6812), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3956), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [119313] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6822), 1, - anon_sym_LPAREN, - ACTIONS(6824), 1, - aux_sym__c_word_token1, - ACTIONS(6826), 1, - anon_sym_LF, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6830), 1, - anon_sym_DQUOTE, - ACTIONS(6832), 1, - aux_sym_number_token1, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(6836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6840), 1, - anon_sym_BQUOTE, - ACTIONS(6842), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2645), 1, - sym__c_terminator, - STATE(4833), 1, - sym__for_body, - ACTIONS(6818), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(6820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4037), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2269), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [119380] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(6844), 1, - sym_word, - ACTIONS(6846), 1, - sym__special_character, - ACTIONS(6850), 1, - sym_test_operator, - STATE(2813), 1, - aux_sym__literal_repeat1, - STATE(3053), 1, - sym_concatenation, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6848), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3059), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [119449] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(6852), 1, - sym_word, - ACTIONS(6854), 1, - sym__special_character, - ACTIONS(6858), 1, - sym_test_operator, - STATE(2847), 1, - aux_sym__literal_repeat1, - STATE(3043), 1, - sym_concatenation, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6856), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3294), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [119518] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(6846), 1, - sym__special_character, - ACTIONS(6860), 1, - sym_word, - ACTIONS(6864), 1, - sym_test_operator, - STATE(2847), 1, - aux_sym__literal_repeat1, - STATE(3043), 1, - sym_concatenation, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6862), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2989), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [119587] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(6854), 1, - sym__special_character, - ACTIONS(6866), 1, - sym_word, - ACTIONS(6870), 1, - sym_test_operator, - STATE(2813), 1, - aux_sym__literal_repeat1, - STATE(3053), 1, - sym_concatenation, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6868), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3371), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [119656] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, - sym_word, - ACTIONS(6874), 1, - anon_sym_RBRACK, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6876), 2, - sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1856), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [119723] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, - sym_word, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(6882), 1, - anon_sym_RBRACK, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6876), 2, - sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1856), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [119790] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(6886), 1, - anon_sym_DQUOTE, - STATE(3540), 1, - sym_string, - ACTIONS(6888), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6884), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1215), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [119835] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - sym_file_descriptor, - ACTIONS(6886), 1, - anon_sym_DQUOTE, - STATE(3540), 1, - sym_string, - ACTIONS(6888), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6884), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(1205), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [119880] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6890), 1, - sym_word, - ACTIONS(6894), 1, - anon_sym_DOLLAR, - ACTIONS(6896), 1, - sym__special_character, - ACTIONS(6898), 1, - anon_sym_DQUOTE, - ACTIONS(6902), 1, - aux_sym_number_token1, - ACTIONS(6904), 1, - aux_sym_number_token2, - ACTIONS(6906), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6908), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6910), 1, - anon_sym_BQUOTE, - ACTIONS(6912), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6916), 1, - sym_test_operator, - ACTIONS(6918), 1, - sym__brace_start, - STATE(3516), 1, - aux_sym__literal_repeat1, - STATE(3581), 1, - sym_concatenation, - ACTIONS(6892), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6900), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6914), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3382), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [119949] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6920), 1, - sym__special_character, - STATE(2502), 1, - aux_sym__literal_repeat1, - ACTIONS(3841), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3843), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [119990] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6756), 1, - anon_sym_DOLLAR, - ACTIONS(6760), 1, - anon_sym_DQUOTE, - ACTIONS(6764), 1, - aux_sym_number_token1, - ACTIONS(6766), 1, - aux_sym_number_token2, - ACTIONS(6768), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, - anon_sym_BQUOTE, - ACTIONS(6774), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, - sym__brace_start, - ACTIONS(6922), 1, - sym_word, - ACTIONS(6924), 1, - sym__special_character, - ACTIONS(6928), 1, - sym_test_operator, - STATE(2841), 1, - aux_sym__literal_repeat1, - STATE(3069), 1, - sym_concatenation, - ACTIONS(6754), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6926), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2791), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120059] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6756), 1, - anon_sym_DOLLAR, - ACTIONS(6760), 1, - anon_sym_DQUOTE, - ACTIONS(6764), 1, - aux_sym_number_token1, - ACTIONS(6766), 1, - aux_sym_number_token2, - ACTIONS(6768), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, - anon_sym_BQUOTE, - ACTIONS(6774), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, - sym__brace_start, - ACTIONS(6924), 1, - sym__special_character, - ACTIONS(6930), 1, - sym_word, - ACTIONS(6934), 1, - sym_test_operator, - STATE(2864), 1, - aux_sym__literal_repeat1, - STATE(3012), 1, - sym_concatenation, - ACTIONS(6754), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6932), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2765), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120128] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6894), 1, - anon_sym_DOLLAR, - ACTIONS(6896), 1, - sym__special_character, - ACTIONS(6898), 1, - anon_sym_DQUOTE, - ACTIONS(6902), 1, - aux_sym_number_token1, - ACTIONS(6904), 1, - aux_sym_number_token2, - ACTIONS(6906), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6908), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6910), 1, - anon_sym_BQUOTE, - ACTIONS(6912), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6918), 1, - sym__brace_start, - ACTIONS(6936), 1, - sym_word, - ACTIONS(6940), 1, - sym_test_operator, - STATE(3485), 1, - aux_sym__literal_repeat1, - STATE(3587), 1, - sym_concatenation, - ACTIONS(6892), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6914), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6938), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3416), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120197] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6792), 1, - anon_sym_DOLLAR, - ACTIONS(6794), 1, - sym__special_character, - ACTIONS(6796), 1, - anon_sym_DQUOTE, - ACTIONS(6800), 1, - aux_sym_number_token1, - ACTIONS(6802), 1, - aux_sym_number_token2, - ACTIONS(6804), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6806), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6808), 1, - anon_sym_BQUOTE, - ACTIONS(6810), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6816), 1, - sym__brace_start, - ACTIONS(6942), 1, - sym_word, - ACTIONS(6946), 1, - sym_test_operator, - STATE(4014), 1, - aux_sym__literal_repeat1, - STATE(4086), 1, - sym_concatenation, - ACTIONS(6790), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6812), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6944), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3942), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120266] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6822), 1, - anon_sym_LPAREN, - ACTIONS(6824), 1, - aux_sym__c_word_token1, - ACTIONS(6826), 1, - anon_sym_LF, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6830), 1, - anon_sym_DQUOTE, - ACTIONS(6832), 1, - aux_sym_number_token1, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(6836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6840), 1, - anon_sym_BQUOTE, - ACTIONS(6842), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2645), 1, - sym__c_terminator, - STATE(4575), 1, - sym__for_body, - ACTIONS(6818), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(6820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4037), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2269), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [120333] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(6948), 1, - sym_word, - ACTIONS(6950), 1, - sym__special_character, - ACTIONS(6954), 1, - sym_test_operator, - STATE(2813), 1, - aux_sym__literal_repeat1, - STATE(3053), 1, - sym_concatenation, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6952), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2919), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120402] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(6956), 1, - sym_word, - ACTIONS(6958), 1, - sym__special_character, - ACTIONS(6962), 1, - sym_test_operator, - STATE(2847), 1, - aux_sym__literal_repeat1, - STATE(3043), 1, - sym_concatenation, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6960), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2924), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120471] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(6950), 1, - sym__special_character, - ACTIONS(6964), 1, - sym_word, - ACTIONS(6968), 1, - sym_test_operator, - STATE(2847), 1, - aux_sym__literal_repeat1, - STATE(3043), 1, - sym_concatenation, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6966), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2935), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120540] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, - sym_word, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(6970), 1, - anon_sym_RBRACK, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6876), 2, - sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1856), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120607] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, - sym_word, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(6972), 1, - anon_sym_RBRACK, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6876), 2, - sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1856), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120674] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(6958), 1, - sym__special_character, - ACTIONS(6974), 1, - sym_word, - ACTIONS(6978), 1, - sym_test_operator, - STATE(2813), 1, - aux_sym__literal_repeat1, - STATE(3053), 1, - sym_concatenation, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6976), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2920), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120743] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6920), 1, - sym__special_character, - STATE(2502), 1, - aux_sym__literal_repeat1, - ACTIONS(3989), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3991), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [120784] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6792), 1, - anon_sym_DOLLAR, - ACTIONS(6794), 1, - sym__special_character, - ACTIONS(6796), 1, - anon_sym_DQUOTE, - ACTIONS(6800), 1, - aux_sym_number_token1, - ACTIONS(6802), 1, - aux_sym_number_token2, - ACTIONS(6804), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6806), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6808), 1, - anon_sym_BQUOTE, - ACTIONS(6810), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6816), 1, - sym__brace_start, - ACTIONS(6980), 1, - sym_word, - ACTIONS(6984), 1, - sym_test_operator, - STATE(3995), 1, - aux_sym__literal_repeat1, - STATE(4059), 1, - sym_concatenation, - ACTIONS(6790), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6812), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6982), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3954), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120853] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, - sym_word, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(6986), 1, - anon_sym_RBRACK, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6876), 2, - sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1856), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120920] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6728), 1, - sym__special_character, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(6988), 1, - sym_word, - ACTIONS(6992), 1, - sym_test_operator, - STATE(2847), 1, - aux_sym__literal_repeat1, - STATE(3043), 1, - sym_concatenation, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6990), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2966), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120989] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, - sym_word, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(6994), 1, - anon_sym_RBRACK, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6876), 2, - sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1856), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121056] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, - sym_word, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(6996), 1, - anon_sym_RBRACK, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6876), 2, - sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1856), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121123] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, - sym_word, - ACTIONS(6880), 1, - sym_test_operator, - ACTIONS(6998), 1, - anon_sym_RBRACK, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6876), 2, - sym__special_character, - sym__comment_word, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1856), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121190] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7000), 1, - sym__special_character, - STATE(2502), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1357), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [121231] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7003), 1, - sym_word, - ACTIONS(7007), 1, - anon_sym_DOLLAR, - ACTIONS(7009), 1, - sym__special_character, - ACTIONS(7011), 1, - anon_sym_DQUOTE, - ACTIONS(7015), 1, - aux_sym_number_token1, - ACTIONS(7017), 1, - aux_sym_number_token2, - ACTIONS(7019), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7021), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7023), 1, - anon_sym_BQUOTE, - ACTIONS(7025), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7029), 1, - sym_test_operator, - ACTIONS(7031), 1, - sym__brace_start, - STATE(3560), 1, - aux_sym__literal_repeat1, - STATE(3604), 1, - sym_concatenation, - ACTIONS(7005), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7013), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7027), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3492), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121300] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6822), 1, - anon_sym_LPAREN, - ACTIONS(6824), 1, - aux_sym__c_word_token1, - ACTIONS(6826), 1, - anon_sym_LF, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6830), 1, - anon_sym_DQUOTE, - ACTIONS(6832), 1, - aux_sym_number_token1, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(6836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6840), 1, - anon_sym_BQUOTE, - ACTIONS(6842), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2645), 1, - sym__c_terminator, - STATE(4654), 1, - sym__for_body, - ACTIONS(6818), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(6820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4037), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2269), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [121367] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7007), 1, - anon_sym_DOLLAR, - ACTIONS(7009), 1, - sym__special_character, - ACTIONS(7011), 1, - anon_sym_DQUOTE, - ACTIONS(7015), 1, - aux_sym_number_token1, - ACTIONS(7017), 1, - aux_sym_number_token2, - ACTIONS(7019), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7021), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7023), 1, - anon_sym_BQUOTE, - ACTIONS(7025), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7031), 1, - sym__brace_start, - ACTIONS(7033), 1, - sym_word, - ACTIONS(7037), 1, - sym_test_operator, - STATE(3546), 1, - aux_sym__literal_repeat1, - STATE(3603), 1, - sym_concatenation, - ACTIONS(7005), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7027), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7035), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3501), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121436] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(49), 1, - aux_sym_number_token1, - ACTIONS(51), 1, - aux_sym_number_token2, - ACTIONS(53), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, - anon_sym_BQUOTE, - ACTIONS(59), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(7039), 1, - sym_word, - ACTIONS(7041), 1, - anon_sym_DOLLAR, - ACTIONS(7047), 1, - sym__comment_word, - ACTIONS(13), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(61), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7043), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7045), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1023), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121500] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2538), 1, - aux_sym_number_token1, - ACTIONS(2540), 1, - aux_sym_number_token2, - ACTIONS(2544), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2556), 1, - sym__brace_start, - ACTIONS(7049), 1, - sym_word, - ACTIONS(7053), 1, - anon_sym_DOLLAR, - ACTIONS(7057), 1, - anon_sym_DQUOTE, - ACTIONS(7061), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7063), 1, - anon_sym_BQUOTE, - ACTIONS(7065), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7069), 1, - sym__comment_word, - ACTIONS(7051), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7055), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7059), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7067), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1325), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121564] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6004), 1, - anon_sym_DQUOTE, - ACTIONS(6008), 1, - aux_sym_number_token1, - ACTIONS(6010), 1, - aux_sym_number_token2, - ACTIONS(6012), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6014), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6016), 1, - anon_sym_BQUOTE, - ACTIONS(6018), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6028), 1, - sym__brace_start, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7073), 1, - anon_sym_DOLLAR, - ACTIONS(7079), 1, - sym__comment_word, - ACTIONS(5996), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6020), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7075), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7077), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2736), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121628] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6726), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, - sym_word, - ACTIONS(7087), 1, - sym__comment_word, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7083), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7085), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121692] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1244), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [121728] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4240), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(7089), 1, - sym_word, - ACTIONS(7095), 1, - sym__comment_word, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7091), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7093), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3174), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121792] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(5857), 1, - anon_sym_DQUOTE, - ACTIONS(5861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, - anon_sym_BQUOTE, - ACTIONS(5865), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7097), 1, - sym_word, - ACTIONS(7099), 1, - anon_sym_DOLLAR, - ACTIONS(7105), 1, - sym__comment_word, - ACTIONS(5851), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7101), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7103), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1151), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121856] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7107), 1, - sym_word, - ACTIONS(7109), 1, - anon_sym_DOLLAR, - ACTIONS(7115), 1, - sym__comment_word, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7111), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7113), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1435), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121920] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - anon_sym_DQUOTE, - ACTIONS(5919), 1, - aux_sym_number_token1, - ACTIONS(5921), 1, - aux_sym_number_token2, - ACTIONS(5923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5927), 1, - anon_sym_BQUOTE, - ACTIONS(5929), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5939), 1, - sym__brace_start, - ACTIONS(7117), 1, - sym_word, - ACTIONS(7119), 1, - anon_sym_DOLLAR, - ACTIONS(7125), 1, - sym__comment_word, - ACTIONS(5907), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7121), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7123), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1201), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121984] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5915), 1, - anon_sym_DQUOTE, - ACTIONS(5919), 1, - aux_sym_number_token1, - ACTIONS(5921), 1, - aux_sym_number_token2, - ACTIONS(5923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5927), 1, - anon_sym_BQUOTE, - ACTIONS(5929), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5939), 1, - sym__brace_start, - ACTIONS(7117), 1, - sym_word, - ACTIONS(7125), 1, - sym__comment_word, - ACTIONS(7127), 1, - anon_sym_DOLLAR, - ACTIONS(5907), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7121), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7123), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1201), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122048] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6822), 1, - anon_sym_LPAREN, - ACTIONS(6824), 1, - aux_sym__c_word_token1, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6830), 1, - anon_sym_DQUOTE, - ACTIONS(6832), 1, - aux_sym_number_token1, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(6836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6840), 1, - anon_sym_BQUOTE, - ACTIONS(6842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7131), 1, - anon_sym_LF, - STATE(2859), 1, - sym__c_terminator, - ACTIONS(6820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7129), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(4038), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2269), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [122112] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5483), 1, - anon_sym_DOLLAR, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, - anon_sym_BQUOTE, - ACTIONS(6554), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7133), 1, - sym_word, - ACTIONS(7139), 1, - sym__comment_word, - ACTIONS(6542), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7135), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7137), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2929), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122176] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 1, - aux_sym_number_token1, - ACTIONS(1567), 1, - aux_sym_number_token2, - ACTIONS(1571), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1585), 1, - sym__brace_start, - ACTIONS(5829), 1, - anon_sym_DQUOTE, - ACTIONS(5833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5835), 1, - anon_sym_BQUOTE, - ACTIONS(5837), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7141), 1, - sym_word, - ACTIONS(7143), 1, - anon_sym_DOLLAR, - ACTIONS(7149), 1, - sym__comment_word, - ACTIONS(5823), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5839), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7145), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7147), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(967), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122240] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 1, - aux_sym_number_token1, - ACTIONS(1567), 1, - aux_sym_number_token2, - ACTIONS(1571), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1585), 1, - sym__brace_start, - ACTIONS(5829), 1, - anon_sym_DQUOTE, - ACTIONS(5833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5835), 1, - anon_sym_BQUOTE, - ACTIONS(5837), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7141), 1, - sym_word, - ACTIONS(7149), 1, - sym__comment_word, - ACTIONS(7151), 1, - anon_sym_DOLLAR, - ACTIONS(5823), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5839), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7145), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7147), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(967), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122304] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3695), 1, - anon_sym_DQUOTE, - ACTIONS(3699), 1, - aux_sym_number_token1, - ACTIONS(3701), 1, - aux_sym_number_token2, - ACTIONS(3703), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3705), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3707), 1, - anon_sym_BQUOTE, - ACTIONS(3709), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3715), 1, - sym__brace_start, - ACTIONS(7153), 1, - sym_word, - ACTIONS(7155), 1, - anon_sym_DOLLAR, - ACTIONS(7161), 1, - sym__comment_word, - ACTIONS(3689), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3711), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7157), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1998), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122368] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7165), 1, - anon_sym_DOLLAR, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122432] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(7173), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122496] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3695), 1, - anon_sym_DQUOTE, - ACTIONS(3699), 1, - aux_sym_number_token1, - ACTIONS(3701), 1, - aux_sym_number_token2, - ACTIONS(3703), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3705), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3707), 1, - anon_sym_BQUOTE, - ACTIONS(3709), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3715), 1, - sym__brace_start, - ACTIONS(7153), 1, - sym_word, - ACTIONS(7161), 1, - sym__comment_word, - ACTIONS(7175), 1, - anon_sym_DOLLAR, - ACTIONS(3689), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3711), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7157), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1998), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122560] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7107), 1, - sym_word, - ACTIONS(7115), 1, - sym__comment_word, - ACTIONS(7177), 1, - anon_sym_DOLLAR, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7111), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7113), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1435), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122624] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3018), 1, - anon_sym_DOLLAR, - ACTIONS(3024), 1, - aux_sym_number_token1, - ACTIONS(3026), 1, - aux_sym_number_token2, - ACTIONS(3030), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3040), 1, - sym__brace_start, - ACTIONS(6610), 1, - anon_sym_DQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, - anon_sym_BQUOTE, - ACTIONS(6618), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7179), 1, - sym_word, - ACTIONS(7185), 1, - sym__comment_word, - ACTIONS(6606), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6620), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7181), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1399), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122688] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(156), 1, - anon_sym_DOLLAR, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - ACTIONS(7187), 1, - sym_word, - ACTIONS(7193), 1, - sym__comment_word, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7189), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7191), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1611), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122752] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2385), 1, - aux_sym_number_token1, - ACTIONS(2387), 1, - aux_sym_number_token2, - ACTIONS(2391), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2403), 1, - sym__brace_start, - ACTIONS(7195), 1, - sym_word, - ACTIONS(7199), 1, - anon_sym_DOLLAR, - ACTIONS(7203), 1, - anon_sym_DQUOTE, - ACTIONS(7207), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7209), 1, - anon_sym_BQUOTE, - ACTIONS(7211), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7215), 1, - sym__comment_word, - ACTIONS(7197), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7201), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7205), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7213), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1097), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122816] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, - anon_sym_BQUOTE, - ACTIONS(6554), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7133), 1, - sym_word, - ACTIONS(7139), 1, - sym__comment_word, - ACTIONS(7217), 1, - anon_sym_DOLLAR, - ACTIONS(6542), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7135), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7137), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2929), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122880] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3024), 1, - aux_sym_number_token1, - ACTIONS(3026), 1, - aux_sym_number_token2, - ACTIONS(3030), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3040), 1, - sym__brace_start, - ACTIONS(6610), 1, - anon_sym_DQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, - anon_sym_BQUOTE, - ACTIONS(6618), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7179), 1, - sym_word, - ACTIONS(7185), 1, - sym__comment_word, - ACTIONS(7219), 1, - anon_sym_DOLLAR, - ACTIONS(6606), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6620), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7181), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1399), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122944] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3837), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3839), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [122980] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, - anon_sym_BQUOTE, - ACTIONS(6554), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7133), 1, - sym_word, - ACTIONS(7139), 1, - sym__comment_word, - ACTIONS(7221), 1, - anon_sym_DOLLAR, - ACTIONS(6542), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7135), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7137), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2929), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123044] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, - sym_word, - ACTIONS(7087), 1, - sym__comment_word, - ACTIONS(7223), 1, - anon_sym_DOLLAR, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7083), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7085), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123108] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, - sym_word, - ACTIONS(7087), 1, - sym__comment_word, - ACTIONS(7225), 1, - anon_sym_DOLLAR, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7083), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7085), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123172] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1559), 1, - anon_sym_DOLLAR, - ACTIONS(1565), 1, - aux_sym_number_token1, - ACTIONS(1567), 1, - aux_sym_number_token2, - ACTIONS(1571), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1585), 1, - sym__brace_start, - ACTIONS(5829), 1, - anon_sym_DQUOTE, - ACTIONS(5833), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5835), 1, - anon_sym_BQUOTE, - ACTIONS(5837), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7141), 1, - sym_word, - ACTIONS(7149), 1, - sym__comment_word, - ACTIONS(5823), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5839), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7145), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7147), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(967), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123236] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2385), 1, - aux_sym_number_token1, - ACTIONS(2387), 1, - aux_sym_number_token2, - ACTIONS(2391), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2403), 1, - sym__brace_start, - ACTIONS(7195), 1, - sym_word, - ACTIONS(7203), 1, - anon_sym_DQUOTE, - ACTIONS(7207), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7209), 1, - anon_sym_BQUOTE, - ACTIONS(7211), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7215), 1, - sym__comment_word, - ACTIONS(7227), 1, - anon_sym_DOLLAR, - ACTIONS(7197), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7201), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7205), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7213), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1097), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123300] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_DOLLAR, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7107), 1, - sym_word, - ACTIONS(7115), 1, - sym__comment_word, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7111), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7113), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1435), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123364] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2707), 1, - aux_sym_number_token1, - ACTIONS(2709), 1, - aux_sym_number_token2, - ACTIONS(2713), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2723), 1, - sym__brace_start, - ACTIONS(6436), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6442), 1, - anon_sym_BQUOTE, - ACTIONS(6444), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7229), 1, - sym_word, - ACTIONS(7231), 1, - anon_sym_DOLLAR, - ACTIONS(7237), 1, - sym__comment_word, - ACTIONS(6432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6446), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7233), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7235), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1279), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123428] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(5857), 1, - anon_sym_DQUOTE, - ACTIONS(5861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, - anon_sym_BQUOTE, - ACTIONS(5865), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7097), 1, - sym_word, - ACTIONS(7105), 1, - sym__comment_word, - ACTIONS(7239), 1, - anon_sym_DOLLAR, - ACTIONS(5851), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7101), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7103), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1151), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123492] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2707), 1, - aux_sym_number_token1, - ACTIONS(2709), 1, - aux_sym_number_token2, - ACTIONS(2713), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2723), 1, - sym__brace_start, - ACTIONS(6436), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6442), 1, - anon_sym_BQUOTE, - ACTIONS(6444), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7229), 1, - sym_word, - ACTIONS(7237), 1, - sym__comment_word, - ACTIONS(7241), 1, - anon_sym_DOLLAR, - ACTIONS(6432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6446), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7233), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7235), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1279), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123556] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(7243), 1, - sym_word, - ACTIONS(7247), 1, - anon_sym_DOLLAR, - ACTIONS(7251), 1, - anon_sym_DQUOTE, - ACTIONS(7255), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7257), 1, - anon_sym_BQUOTE, - ACTIONS(7259), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7263), 1, - sym__comment_word, - ACTIONS(7245), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7249), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7253), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123620] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(7243), 1, - sym_word, - ACTIONS(7251), 1, - anon_sym_DQUOTE, - ACTIONS(7255), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7257), 1, - anon_sym_BQUOTE, - ACTIONS(7259), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7263), 1, - sym__comment_word, - ACTIONS(7265), 1, - anon_sym_DOLLAR, - ACTIONS(7245), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7249), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7253), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123684] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3024), 1, - aux_sym_number_token1, - ACTIONS(3026), 1, - aux_sym_number_token2, - ACTIONS(3030), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3040), 1, - sym__brace_start, - ACTIONS(6610), 1, - anon_sym_DQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6616), 1, - anon_sym_BQUOTE, - ACTIONS(6618), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7179), 1, - sym_word, - ACTIONS(7185), 1, - sym__comment_word, - ACTIONS(7267), 1, - anon_sym_DOLLAR, - ACTIONS(6606), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6620), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7181), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1399), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123748] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(7269), 1, - sym_word, - ACTIONS(7271), 1, - anon_sym_DOLLAR, - ACTIONS(7277), 1, - sym__comment_word, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7273), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7275), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1296), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123812] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6822), 1, - anon_sym_LPAREN, - ACTIONS(6824), 1, - aux_sym__c_word_token1, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6830), 1, - anon_sym_DQUOTE, - ACTIONS(6832), 1, - aux_sym_number_token1, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(6836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6840), 1, - anon_sym_BQUOTE, - ACTIONS(6842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7281), 1, - anon_sym_LF, - STATE(2829), 1, - sym__c_terminator, - ACTIONS(6820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7279), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(4041), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2269), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [123876] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(7269), 1, - sym_word, - ACTIONS(7277), 1, - sym__comment_word, - ACTIONS(7283), 1, - anon_sym_DOLLAR, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7273), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7275), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1296), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123940] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(7269), 1, - sym_word, - ACTIONS(7277), 1, - sym__comment_word, - ACTIONS(7285), 1, - anon_sym_DOLLAR, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7273), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7275), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1296), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124004] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2701), 1, - anon_sym_DOLLAR, - ACTIONS(2707), 1, - aux_sym_number_token1, - ACTIONS(2709), 1, - aux_sym_number_token2, - ACTIONS(2713), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2723), 1, - sym__brace_start, - ACTIONS(6436), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6442), 1, - anon_sym_BQUOTE, - ACTIONS(6444), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7229), 1, - sym_word, - ACTIONS(7237), 1, - sym__comment_word, - ACTIONS(6432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6446), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7233), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7235), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1279), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124068] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, - sym_word, - ACTIONS(6876), 1, - sym__comment_word, - ACTIONS(7287), 1, - anon_sym_DOLLAR, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6880), 2, - sym__special_character, - sym_test_operator, - STATE(1856), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124132] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4826), 1, - anon_sym_DOLLAR, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7289), 1, - sym_word, - ACTIONS(7295), 1, - sym__comment_word, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7291), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7293), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4137), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124196] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, - sym_word, - ACTIONS(6876), 1, - sym__comment_word, - ACTIONS(7297), 1, - anon_sym_DOLLAR, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6880), 2, - sym__special_character, - sym_test_operator, - STATE(1856), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124260] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(7299), 1, - sym_word, - ACTIONS(7301), 1, - anon_sym_DOLLAR, - ACTIONS(7307), 1, - sym__comment_word, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7303), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7305), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1488), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124324] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(7299), 1, - sym_word, - ACTIONS(7307), 1, - sym__comment_word, - ACTIONS(7309), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7303), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7305), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1488), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124388] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6760), 1, - anon_sym_DQUOTE, - ACTIONS(6764), 1, - aux_sym_number_token1, - ACTIONS(6766), 1, - aux_sym_number_token2, - ACTIONS(6768), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, - anon_sym_BQUOTE, - ACTIONS(6774), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, - sym__brace_start, - ACTIONS(7311), 1, - sym_word, - ACTIONS(7313), 1, - anon_sym_DOLLAR, - ACTIONS(7319), 1, - sym__comment_word, - ACTIONS(6754), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7315), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7317), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2875), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124452] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(7321), 1, - sym_word, - ACTIONS(7323), 1, - anon_sym_DOLLAR, - ACTIONS(7329), 1, - sym__comment_word, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7325), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7327), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(969), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124516] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - anon_sym_DQUOTE, - ACTIONS(570), 1, - aux_sym_number_token1, - ACTIONS(572), 1, - aux_sym_number_token2, - ACTIONS(574), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(576), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(578), 1, - anon_sym_BQUOTE, - ACTIONS(580), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(7331), 1, - sym_word, - ACTIONS(7333), 1, - anon_sym_DOLLAR, - ACTIONS(7339), 1, - sym__comment_word, - ACTIONS(546), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(582), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7335), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7337), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(822), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124580] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(7321), 1, - sym_word, - ACTIONS(7329), 1, - sym__comment_word, - ACTIONS(7341), 1, - anon_sym_DOLLAR, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7325), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7327), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(969), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124644] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6792), 1, - anon_sym_DOLLAR, - ACTIONS(6796), 1, - anon_sym_DQUOTE, - ACTIONS(6800), 1, - aux_sym_number_token1, - ACTIONS(6802), 1, - aux_sym_number_token2, - ACTIONS(6804), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6806), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6808), 1, - anon_sym_BQUOTE, - ACTIONS(6810), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6816), 1, - sym__brace_start, - ACTIONS(7343), 1, - sym_word, - ACTIONS(7349), 1, - sym__comment_word, - ACTIONS(6790), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6812), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7345), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7347), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3998), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124708] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(360), 1, - anon_sym_DOLLAR, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(7321), 1, - sym_word, - ACTIONS(7329), 1, - sym__comment_word, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7325), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7327), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(969), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124772] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - anon_sym_DQUOTE, - ACTIONS(570), 1, - aux_sym_number_token1, - ACTIONS(572), 1, - aux_sym_number_token2, - ACTIONS(574), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(576), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(578), 1, - anon_sym_BQUOTE, - ACTIONS(580), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(7331), 1, - sym_word, - ACTIONS(7339), 1, - sym__comment_word, - ACTIONS(7351), 1, - anon_sym_DOLLAR, - ACTIONS(546), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(582), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7335), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7337), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(822), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124836] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(7321), 1, - sym_word, - ACTIONS(7329), 1, - sym__comment_word, - ACTIONS(7353), 1, - anon_sym_DOLLAR, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7325), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7327), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(969), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124900] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(7321), 1, - sym_word, - ACTIONS(7329), 1, - sym__comment_word, - ACTIONS(7355), 1, - anon_sym_DOLLAR, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7325), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7327), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(969), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124964] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(7357), 1, - sym_word, - ACTIONS(7363), 1, - sym__comment_word, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7359), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7361), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2240), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125028] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(7299), 1, - sym_word, - ACTIONS(7307), 1, - sym__comment_word, - ACTIONS(7365), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7303), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7305), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1488), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125092] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(7299), 1, - sym_word, - ACTIONS(7307), 1, - sym__comment_word, - ACTIONS(7367), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7303), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7305), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1488), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125156] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(7269), 1, - sym_word, - ACTIONS(7277), 1, - sym__comment_word, - ACTIONS(7369), 1, - anon_sym_DOLLAR, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7273), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7275), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1296), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125220] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(7269), 1, - sym_word, - ACTIONS(7277), 1, - sym__comment_word, - ACTIONS(7371), 1, - anon_sym_DOLLAR, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7273), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7275), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1296), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125284] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, - sym_word, - ACTIONS(7087), 1, - sym__comment_word, - ACTIONS(7373), 1, - anon_sym_DOLLAR, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7083), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7085), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125348] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7107), 1, - sym_word, - ACTIONS(7115), 1, - sym__comment_word, - ACTIONS(7375), 1, - anon_sym_DOLLAR, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7111), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7113), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1435), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125412] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, - sym_word, - ACTIONS(7087), 1, - sym__comment_word, - ACTIONS(7377), 1, - anon_sym_DOLLAR, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7083), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7085), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125476] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6760), 1, - anon_sym_DQUOTE, - ACTIONS(6764), 1, - aux_sym_number_token1, - ACTIONS(6766), 1, - aux_sym_number_token2, - ACTIONS(6768), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, - anon_sym_BQUOTE, - ACTIONS(6774), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, - sym__brace_start, - ACTIONS(7311), 1, - sym_word, - ACTIONS(7319), 1, - sym__comment_word, - ACTIONS(7379), 1, - anon_sym_DOLLAR, - ACTIONS(6754), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7315), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7317), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2875), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125540] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6898), 1, - anon_sym_DQUOTE, - ACTIONS(6902), 1, - aux_sym_number_token1, - ACTIONS(6904), 1, - aux_sym_number_token2, - ACTIONS(6906), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6908), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6910), 1, - anon_sym_BQUOTE, - ACTIONS(6912), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6918), 1, - sym__brace_start, - ACTIONS(7381), 1, - sym_word, - ACTIONS(7383), 1, - anon_sym_DOLLAR, - ACTIONS(7389), 1, - sym__comment_word, - ACTIONS(6892), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6914), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7385), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7387), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3508), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125604] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(7321), 1, - sym_word, - ACTIONS(7329), 1, - sym__comment_word, - ACTIONS(7391), 1, - anon_sym_DOLLAR, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7325), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7327), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(969), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125668] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(364), 1, - anon_sym_DQUOTE, - ACTIONS(368), 1, - aux_sym_number_token1, - ACTIONS(370), 1, - aux_sym_number_token2, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(374), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(376), 1, - anon_sym_BQUOTE, - ACTIONS(378), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(388), 1, - sym__brace_start, - ACTIONS(7321), 1, - sym_word, - ACTIONS(7329), 1, - sym__comment_word, - ACTIONS(7393), 1, - anon_sym_DOLLAR, - ACTIONS(340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7325), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7327), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(969), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125732] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7107), 1, - sym_word, - ACTIONS(7115), 1, - sym__comment_word, - ACTIONS(7395), 1, - anon_sym_DOLLAR, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7111), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7113), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1435), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125796] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, - sym_word, - ACTIONS(6876), 1, - sym__comment_word, - ACTIONS(7397), 1, - anon_sym_DOLLAR, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6880), 2, - sym__special_character, - sym_test_operator, - STATE(1856), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125860] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5631), 1, - anon_sym_DOLLAR, - ACTIONS(5635), 1, - anon_sym_DQUOTE, - ACTIONS(5639), 1, - aux_sym_number_token1, - ACTIONS(5641), 1, - aux_sym_number_token2, - ACTIONS(5643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5645), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, - anon_sym_BQUOTE, - ACTIONS(5649), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5659), 1, - sym__brace_start, - ACTIONS(7399), 1, - sym_word, - ACTIONS(7405), 1, - sym__comment_word, - ACTIONS(5627), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5651), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7401), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7403), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2015), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125924] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6004), 1, - anon_sym_DQUOTE, - ACTIONS(6008), 1, - aux_sym_number_token1, - ACTIONS(6010), 1, - aux_sym_number_token2, - ACTIONS(6012), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6014), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6016), 1, - anon_sym_BQUOTE, - ACTIONS(6018), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6028), 1, - sym__brace_start, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7079), 1, - sym__comment_word, - ACTIONS(7407), 1, - anon_sym_DOLLAR, - ACTIONS(5996), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6020), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7075), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7077), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2736), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125988] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(49), 1, - aux_sym_number_token1, - ACTIONS(51), 1, - aux_sym_number_token2, - ACTIONS(53), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, - anon_sym_BQUOTE, - ACTIONS(59), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(7039), 1, - sym_word, - ACTIONS(7047), 1, - sym__comment_word, - ACTIONS(7409), 1, - anon_sym_DOLLAR, - ACTIONS(13), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(61), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7043), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7045), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1023), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126052] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6898), 1, - anon_sym_DQUOTE, - ACTIONS(6902), 1, - aux_sym_number_token1, - ACTIONS(6904), 1, - aux_sym_number_token2, - ACTIONS(6906), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6908), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6910), 1, - anon_sym_BQUOTE, - ACTIONS(6912), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6918), 1, - sym__brace_start, - ACTIONS(7381), 1, - sym_word, - ACTIONS(7389), 1, - sym__comment_word, - ACTIONS(7411), 1, - anon_sym_DOLLAR, - ACTIONS(6892), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6914), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7385), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7387), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3508), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126116] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6004), 1, - anon_sym_DQUOTE, - ACTIONS(6008), 1, - aux_sym_number_token1, - ACTIONS(6010), 1, - aux_sym_number_token2, - ACTIONS(6012), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6014), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6016), 1, - anon_sym_BQUOTE, - ACTIONS(6018), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6028), 1, - sym__brace_start, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7079), 1, - sym__comment_word, - ACTIONS(7413), 1, - anon_sym_DOLLAR, - ACTIONS(5996), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6020), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7075), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7077), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2736), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126180] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(7243), 1, - sym_word, - ACTIONS(7251), 1, - anon_sym_DQUOTE, - ACTIONS(7255), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7257), 1, - anon_sym_BQUOTE, - ACTIONS(7259), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7263), 1, - sym__comment_word, - ACTIONS(7415), 1, - anon_sym_DOLLAR, - ACTIONS(7245), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7249), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7253), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126244] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, - sym_word, - ACTIONS(6876), 1, - sym__comment_word, - ACTIONS(7417), 1, - anon_sym_DOLLAR, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6880), 2, - sym__special_character, - sym_test_operator, - STATE(1856), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126308] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(5857), 1, - anon_sym_DQUOTE, - ACTIONS(5861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, - anon_sym_BQUOTE, - ACTIONS(5865), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7097), 1, - sym_word, - ACTIONS(7105), 1, - sym__comment_word, - ACTIONS(7419), 1, - anon_sym_DOLLAR, - ACTIONS(5851), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7101), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7103), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1151), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126372] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3691), 1, - anon_sym_DOLLAR, - ACTIONS(3695), 1, - anon_sym_DQUOTE, - ACTIONS(3699), 1, - aux_sym_number_token1, - ACTIONS(3701), 1, - aux_sym_number_token2, - ACTIONS(3703), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3705), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3707), 1, - anon_sym_BQUOTE, - ACTIONS(3709), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3715), 1, - sym__brace_start, - ACTIONS(7153), 1, - sym_word, - ACTIONS(7161), 1, - sym__comment_word, - ACTIONS(3689), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3711), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7157), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1998), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126436] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6894), 1, - anon_sym_DOLLAR, - ACTIONS(6898), 1, - anon_sym_DQUOTE, - ACTIONS(6902), 1, - aux_sym_number_token1, - ACTIONS(6904), 1, - aux_sym_number_token2, - ACTIONS(6906), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6908), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6910), 1, - anon_sym_BQUOTE, - ACTIONS(6912), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6918), 1, - sym__brace_start, - ACTIONS(7381), 1, - sym_word, - ACTIONS(7389), 1, - sym__comment_word, - ACTIONS(6892), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6914), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7385), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7387), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3508), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126500] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7011), 1, - anon_sym_DQUOTE, - ACTIONS(7015), 1, - aux_sym_number_token1, - ACTIONS(7017), 1, - aux_sym_number_token2, - ACTIONS(7019), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7021), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7023), 1, - anon_sym_BQUOTE, - ACTIONS(7025), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7031), 1, - sym__brace_start, - ACTIONS(7421), 1, - sym_word, - ACTIONS(7423), 1, - anon_sym_DOLLAR, - ACTIONS(7429), 1, - sym__comment_word, - ACTIONS(7005), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7027), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7425), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7427), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3565), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126564] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6004), 1, - anon_sym_DQUOTE, - ACTIONS(6008), 1, - aux_sym_number_token1, - ACTIONS(6010), 1, - aux_sym_number_token2, - ACTIONS(6012), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6014), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6016), 1, - anon_sym_BQUOTE, - ACTIONS(6018), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6028), 1, - sym__brace_start, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7079), 1, - sym__comment_word, - ACTIONS(7431), 1, - anon_sym_DOLLAR, - ACTIONS(5996), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6020), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7075), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7077), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2736), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126628] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6760), 1, - anon_sym_DQUOTE, - ACTIONS(6764), 1, - aux_sym_number_token1, - ACTIONS(6766), 1, - aux_sym_number_token2, - ACTIONS(6768), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, - anon_sym_BQUOTE, - ACTIONS(6774), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, - sym__brace_start, - ACTIONS(7311), 1, - sym_word, - ACTIONS(7319), 1, - sym__comment_word, - ACTIONS(7433), 1, - anon_sym_DOLLAR, - ACTIONS(6754), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7315), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7317), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2875), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126692] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6760), 1, - anon_sym_DQUOTE, - ACTIONS(6764), 1, - aux_sym_number_token1, - ACTIONS(6766), 1, - aux_sym_number_token2, - ACTIONS(6768), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, - anon_sym_BQUOTE, - ACTIONS(6774), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, - sym__brace_start, - ACTIONS(7311), 1, - sym_word, - ACTIONS(7319), 1, - sym__comment_word, - ACTIONS(7435), 1, - anon_sym_DOLLAR, - ACTIONS(6754), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7315), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7317), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2875), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126756] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1043), 1, - anon_sym_DOLLAR, - ACTIONS(1047), 1, - anon_sym_DQUOTE, - ACTIONS(1051), 1, - aux_sym_number_token1, - ACTIONS(1053), 1, - aux_sym_number_token2, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, - anon_sym_BQUOTE, - ACTIONS(1061), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym__brace_start, - ACTIONS(7437), 1, - sym_word, - ACTIONS(7443), 1, - sym__comment_word, - ACTIONS(1033), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7439), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7441), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1679), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126820] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(5857), 1, - anon_sym_DQUOTE, - ACTIONS(5861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, - anon_sym_BQUOTE, - ACTIONS(5865), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7097), 1, - sym_word, - ACTIONS(7105), 1, - sym__comment_word, - ACTIONS(7445), 1, - anon_sym_DOLLAR, - ACTIONS(5851), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7101), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7103), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1151), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126884] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3952), 1, - anon_sym_DOLLAR, - ACTIONS(3956), 1, - anon_sym_DQUOTE, - ACTIONS(3960), 1, - aux_sym_number_token1, - ACTIONS(3962), 1, - aux_sym_number_token2, - ACTIONS(3964), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, - anon_sym_BQUOTE, - ACTIONS(3973), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3979), 1, - sym__brace_start, - ACTIONS(7447), 1, - sym_word, - ACTIONS(7453), 1, - sym__comment_word, - ACTIONS(3944), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3975), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7449), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7451), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3118), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126948] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5911), 1, - anon_sym_DOLLAR, - ACTIONS(5915), 1, - anon_sym_DQUOTE, - ACTIONS(5919), 1, - aux_sym_number_token1, - ACTIONS(5921), 1, - aux_sym_number_token2, - ACTIONS(5923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5927), 1, - anon_sym_BQUOTE, - ACTIONS(5929), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5939), 1, - sym__brace_start, - ACTIONS(7117), 1, - sym_word, - ACTIONS(7125), 1, - sym__comment_word, - ACTIONS(5907), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5931), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7121), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7123), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1201), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127012] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(7243), 1, - sym_word, - ACTIONS(7251), 1, - anon_sym_DQUOTE, - ACTIONS(7255), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7257), 1, - anon_sym_BQUOTE, - ACTIONS(7259), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7263), 1, - sym__comment_word, - ACTIONS(7455), 1, - anon_sym_DOLLAR, - ACTIONS(7245), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7249), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7253), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127076] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6040), 1, - anon_sym_DOLLAR, - ACTIONS(6044), 1, - anon_sym_DQUOTE, - ACTIONS(6048), 1, - aux_sym_number_token1, - ACTIONS(6050), 1, - aux_sym_number_token2, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, - anon_sym_BQUOTE, - ACTIONS(6058), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6068), 1, - sym__brace_start, - ACTIONS(7457), 1, - sym_word, - ACTIONS(7463), 1, - sym__comment_word, - ACTIONS(6036), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6060), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7459), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7461), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2420), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127140] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7011), 1, - anon_sym_DQUOTE, - ACTIONS(7015), 1, - aux_sym_number_token1, - ACTIONS(7017), 1, - aux_sym_number_token2, - ACTIONS(7019), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7021), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7023), 1, - anon_sym_BQUOTE, - ACTIONS(7025), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7031), 1, - sym__brace_start, - ACTIONS(7421), 1, - sym_word, - ACTIONS(7429), 1, - sym__comment_word, - ACTIONS(7465), 1, - anon_sym_DOLLAR, - ACTIONS(7005), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7027), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7425), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7427), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3565), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127204] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3807), 1, - anon_sym_DQUOTE, - ACTIONS(3811), 1, - aux_sym_number_token1, - ACTIONS(3813), 1, - aux_sym_number_token2, - ACTIONS(3815), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3817), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3819), 1, - anon_sym_BQUOTE, - ACTIONS(3821), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3827), 1, - sym__brace_start, - ACTIONS(7467), 1, - sym_word, - ACTIONS(7469), 1, - anon_sym_DOLLAR, - ACTIONS(7475), 1, - sym__comment_word, - ACTIONS(3801), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3823), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7471), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7473), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127268] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, - aux_sym_number_token1, - ACTIONS(6694), 1, - aux_sym_number_token2, - ACTIONS(6696), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6700), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6702), 1, - anon_sym_BQUOTE, - ACTIONS(6704), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6710), 1, - sym__brace_start, - ACTIONS(7477), 1, - sym_word, - ACTIONS(7479), 1, - anon_sym_DOLLAR, - ACTIONS(7485), 1, - sym__comment_word, - ACTIONS(6682), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6706), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7481), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7483), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4105), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127332] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6796), 1, - anon_sym_DQUOTE, - ACTIONS(6800), 1, - aux_sym_number_token1, - ACTIONS(6802), 1, - aux_sym_number_token2, - ACTIONS(6804), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6806), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6808), 1, - anon_sym_BQUOTE, - ACTIONS(6810), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6816), 1, - sym__brace_start, - ACTIONS(7343), 1, - sym_word, - ACTIONS(7349), 1, - sym__comment_word, - ACTIONS(7487), 1, - anon_sym_DOLLAR, - ACTIONS(6790), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6812), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7345), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7347), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3998), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127396] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(304), 1, - anon_sym_DOLLAR, - ACTIONS(308), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - aux_sym_number_token1, - ACTIONS(314), 1, - aux_sym_number_token2, - ACTIONS(316), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(320), 1, - anon_sym_BQUOTE, - ACTIONS(322), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(332), 1, - sym__brace_start, - ACTIONS(7489), 1, - sym_word, - ACTIONS(7495), 1, - sym__comment_word, - ACTIONS(272), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7491), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7493), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(423), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127460] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5675), 1, - anon_sym_DOLLAR, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127524] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - ACTIONS(7187), 1, - sym_word, - ACTIONS(7193), 1, - sym__comment_word, - ACTIONS(7497), 1, - anon_sym_DOLLAR, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7189), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7191), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1611), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127588] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7501), 1, - sym__concat, - STATE(2725), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1242), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [127630] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - ACTIONS(7187), 1, - sym_word, - ACTIONS(7193), 1, - sym__comment_word, - ACTIONS(7503), 1, - anon_sym_DOLLAR, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7189), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7191), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1611), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127694] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4374), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4376), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [127730] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6163), 1, - anon_sym_DOLLAR, - ACTIONS(6167), 1, - anon_sym_DQUOTE, - ACTIONS(6171), 1, - aux_sym_number_token1, - ACTIONS(6173), 1, - aux_sym_number_token2, - ACTIONS(6175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6177), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6179), 1, - anon_sym_BQUOTE, - ACTIONS(6181), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6191), 1, - sym__brace_start, - ACTIONS(7505), 1, - sym_word, - ACTIONS(7511), 1, - sym__comment_word, - ACTIONS(6159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6183), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7507), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7509), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3505), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127794] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(7299), 1, - sym_word, - ACTIONS(7307), 1, - sym__comment_word, - ACTIONS(7513), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7303), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7305), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1488), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127858] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2480), 1, - aux_sym_number_token1, - ACTIONS(2482), 1, - aux_sym_number_token2, - ACTIONS(2486), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2496), 1, - sym__brace_start, - ACTIONS(6528), 1, - anon_sym_DQUOTE, - ACTIONS(6532), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6534), 1, - anon_sym_BQUOTE, - ACTIONS(6536), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7515), 1, - sym_word, - ACTIONS(7517), 1, - anon_sym_DOLLAR, - ACTIONS(7523), 1, - sym__comment_word, - ACTIONS(6524), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6538), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7519), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7521), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1094), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127922] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2480), 1, - aux_sym_number_token1, - ACTIONS(2482), 1, - aux_sym_number_token2, - ACTIONS(2486), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2496), 1, - sym__brace_start, - ACTIONS(6528), 1, - anon_sym_DQUOTE, - ACTIONS(6532), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6534), 1, - anon_sym_BQUOTE, - ACTIONS(6536), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7515), 1, - sym_word, - ACTIONS(7523), 1, - sym__comment_word, - ACTIONS(7525), 1, - anon_sym_DOLLAR, - ACTIONS(6524), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6538), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7519), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7521), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1094), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127986] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - anon_sym_DOLLAR, - ACTIONS(3447), 1, - anon_sym_DQUOTE, - ACTIONS(3451), 1, - aux_sym_number_token1, - ACTIONS(3453), 1, - aux_sym_number_token2, - ACTIONS(3455), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3457), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3459), 1, - anon_sym_BQUOTE, - ACTIONS(3461), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3469), 1, - sym__brace_start, - ACTIONS(7527), 1, - sym_word, - ACTIONS(7533), 1, - sym__comment_word, - ACTIONS(3441), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3463), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7529), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7531), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2010), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128050] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(442), 1, - anon_sym_DOLLAR, - ACTIONS(446), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - aux_sym_number_token1, - ACTIONS(452), 1, - aux_sym_number_token2, - ACTIONS(454), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(456), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(458), 1, - anon_sym_BQUOTE, - ACTIONS(460), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(470), 1, - sym__brace_start, - ACTIONS(7535), 1, - sym_word, - ACTIONS(7541), 1, - sym__comment_word, - ACTIONS(406), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(462), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7537), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7539), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(694), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128114] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4370), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4372), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [128150] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(7299), 1, - sym_word, - ACTIONS(7307), 1, - sym__comment_word, - ACTIONS(7543), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7303), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7305), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1488), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128214] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, - sym_word, - ACTIONS(7087), 1, - sym__comment_word, - ACTIONS(7545), 1, - anon_sym_DOLLAR, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7083), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7085), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128278] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, - anon_sym_DOLLAR, - ACTIONS(2385), 1, - aux_sym_number_token1, - ACTIONS(2387), 1, - aux_sym_number_token2, - ACTIONS(2391), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2403), 1, - sym__brace_start, - ACTIONS(7195), 1, - sym_word, - ACTIONS(7203), 1, - anon_sym_DQUOTE, - ACTIONS(7207), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7209), 1, - anon_sym_BQUOTE, - ACTIONS(7211), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7215), 1, - sym__comment_word, - ACTIONS(7197), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7201), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7205), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7213), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1097), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128342] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, - sym_word, - ACTIONS(7087), 1, - sym__comment_word, - ACTIONS(7547), 1, - anon_sym_DOLLAR, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7083), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7085), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128406] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3956), 1, - anon_sym_DQUOTE, - ACTIONS(3960), 1, - aux_sym_number_token1, - ACTIONS(3962), 1, - aux_sym_number_token2, - ACTIONS(3964), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, - anon_sym_BQUOTE, - ACTIONS(3973), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3979), 1, - sym__brace_start, - ACTIONS(7447), 1, - sym_word, - ACTIONS(7453), 1, - sym__comment_word, - ACTIONS(7549), 1, - anon_sym_DOLLAR, - ACTIONS(3944), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3975), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7449), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7451), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3118), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128470] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3956), 1, - anon_sym_DQUOTE, - ACTIONS(3960), 1, - aux_sym_number_token1, - ACTIONS(3962), 1, - aux_sym_number_token2, - ACTIONS(3964), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3971), 1, - anon_sym_BQUOTE, - ACTIONS(3973), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3979), 1, - sym__brace_start, - ACTIONS(7447), 1, - sym_word, - ACTIONS(7453), 1, - sym__comment_word, - ACTIONS(7551), 1, - anon_sym_DOLLAR, - ACTIONS(3944), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3975), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7449), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7451), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3118), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128534] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3803), 1, - anon_sym_DOLLAR, - ACTIONS(3807), 1, - anon_sym_DQUOTE, - ACTIONS(3811), 1, - aux_sym_number_token1, - ACTIONS(3813), 1, - aux_sym_number_token2, - ACTIONS(3815), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3817), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3819), 1, - anon_sym_BQUOTE, - ACTIONS(3821), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3827), 1, - sym__brace_start, - ACTIONS(7467), 1, - sym_word, - ACTIONS(7475), 1, - sym__comment_word, - ACTIONS(3801), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3823), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7471), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7473), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128598] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2538), 1, - aux_sym_number_token1, - ACTIONS(2540), 1, - aux_sym_number_token2, - ACTIONS(2544), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2556), 1, - sym__brace_start, - ACTIONS(7049), 1, - sym_word, - ACTIONS(7057), 1, - anon_sym_DQUOTE, - ACTIONS(7061), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7063), 1, - anon_sym_BQUOTE, - ACTIONS(7065), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7069), 1, - sym__comment_word, - ACTIONS(7553), 1, - anon_sym_DOLLAR, - ACTIONS(7051), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7055), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7059), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7067), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1325), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128662] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7007), 1, - anon_sym_DOLLAR, - ACTIONS(7011), 1, - anon_sym_DQUOTE, - ACTIONS(7015), 1, - aux_sym_number_token1, - ACTIONS(7017), 1, - aux_sym_number_token2, - ACTIONS(7019), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7021), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7023), 1, - anon_sym_BQUOTE, - ACTIONS(7025), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7031), 1, - sym__brace_start, - ACTIONS(7421), 1, - sym_word, - ACTIONS(7429), 1, - sym__comment_word, - ACTIONS(7005), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7027), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7425), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7427), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3565), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128726] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6796), 1, - anon_sym_DQUOTE, - ACTIONS(6800), 1, - aux_sym_number_token1, - ACTIONS(6802), 1, - aux_sym_number_token2, - ACTIONS(6804), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6806), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6808), 1, - anon_sym_BQUOTE, - ACTIONS(6810), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6816), 1, - sym__brace_start, - ACTIONS(7343), 1, - sym_word, - ACTIONS(7349), 1, - sym__comment_word, - ACTIONS(7555), 1, - anon_sym_DOLLAR, - ACTIONS(6790), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6812), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7345), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7347), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3998), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128790] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1997), 1, - aux_sym_number_token1, - ACTIONS(1999), 1, - aux_sym_number_token2, - ACTIONS(2003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2017), 1, - sym__brace_start, - ACTIONS(7557), 1, - sym_word, - ACTIONS(7561), 1, - anon_sym_DOLLAR, - ACTIONS(7565), 1, - anon_sym_DQUOTE, - ACTIONS(7569), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7571), 1, - anon_sym_BQUOTE, - ACTIONS(7573), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7577), 1, - sym__comment_word, - ACTIONS(7559), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7563), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7567), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7575), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(881), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128854] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1997), 1, - aux_sym_number_token1, - ACTIONS(1999), 1, - aux_sym_number_token2, - ACTIONS(2003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2017), 1, - sym__brace_start, - ACTIONS(7557), 1, - sym_word, - ACTIONS(7565), 1, - anon_sym_DQUOTE, - ACTIONS(7569), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7571), 1, - anon_sym_BQUOTE, - ACTIONS(7573), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7577), 1, - sym__comment_word, - ACTIONS(7579), 1, - anon_sym_DOLLAR, - ACTIONS(7559), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7563), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7567), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7575), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(881), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128918] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_DOLLAR, - ACTIONS(3096), 1, - anon_sym_DQUOTE, - ACTIONS(3100), 1, - aux_sym_number_token1, - ACTIONS(3102), 1, - aux_sym_number_token2, - ACTIONS(3104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3106), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3108), 1, - anon_sym_BQUOTE, - ACTIONS(3110), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3120), 1, - sym__brace_start, - ACTIONS(7581), 1, - sym_word, - ACTIONS(7587), 1, - sym__comment_word, - ACTIONS(3090), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3112), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7583), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7585), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1767), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128982] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3807), 1, - anon_sym_DQUOTE, - ACTIONS(3811), 1, - aux_sym_number_token1, - ACTIONS(3813), 1, - aux_sym_number_token2, - ACTIONS(3815), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3817), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3819), 1, - anon_sym_BQUOTE, - ACTIONS(3821), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3827), 1, - sym__brace_start, - ACTIONS(7467), 1, - sym_word, - ACTIONS(7475), 1, - sym__comment_word, - ACTIONS(7589), 1, - anon_sym_DOLLAR, - ACTIONS(3801), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3823), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7471), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7473), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129046] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2502), 1, - anon_sym_DOLLAR, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(7243), 1, - sym_word, - ACTIONS(7251), 1, - anon_sym_DQUOTE, - ACTIONS(7255), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7257), 1, - anon_sym_BQUOTE, - ACTIONS(7259), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7263), 1, - sym__comment_word, - ACTIONS(7245), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7249), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7253), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129110] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6684), 1, - anon_sym_DOLLAR, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, - aux_sym_number_token1, - ACTIONS(6694), 1, - aux_sym_number_token2, - ACTIONS(6696), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6700), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6702), 1, - anon_sym_BQUOTE, - ACTIONS(6704), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6710), 1, - sym__brace_start, - ACTIONS(7477), 1, - sym_word, - ACTIONS(7485), 1, - sym__comment_word, - ACTIONS(6682), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6706), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7481), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7483), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4105), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129174] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1899), 1, - aux_sym_number_token1, - ACTIONS(1901), 1, - aux_sym_number_token2, - ACTIONS(1905), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1919), 1, - sym__brace_start, - ACTIONS(5765), 1, - anon_sym_DQUOTE, - ACTIONS(5769), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5771), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7591), 1, - sym_word, - ACTIONS(7593), 1, - anon_sym_DOLLAR, - ACTIONS(7599), 1, - sym__comment_word, - ACTIONS(5759), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5775), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7595), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7597), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1060), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129238] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(240), 1, - anon_sym_DOLLAR, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(7299), 1, - sym_word, - ACTIONS(7307), 1, - sym__comment_word, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7303), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7305), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1488), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129302] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, - anon_sym_BQUOTE, - ACTIONS(6554), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7133), 1, - sym_word, - ACTIONS(7139), 1, - sym__comment_word, - ACTIONS(7601), 1, - anon_sym_DOLLAR, - ACTIONS(6542), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7135), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7137), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2929), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129366] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6044), 1, - anon_sym_DQUOTE, - ACTIONS(6048), 1, - aux_sym_number_token1, - ACTIONS(6050), 1, - aux_sym_number_token2, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, - anon_sym_BQUOTE, - ACTIONS(6058), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6068), 1, - sym__brace_start, - ACTIONS(7457), 1, - sym_word, - ACTIONS(7463), 1, - sym__comment_word, - ACTIONS(7603), 1, - anon_sym_DOLLAR, - ACTIONS(6036), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6060), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7459), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7461), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2420), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129430] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, - sym_word, - ACTIONS(7087), 1, - sym__comment_word, - ACTIONS(7605), 1, - anon_sym_DOLLAR, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7083), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7085), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129494] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, - sym_word, - ACTIONS(7087), 1, - sym__comment_word, - ACTIONS(7607), 1, - anon_sym_DOLLAR, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7083), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7085), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129558] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5489), 1, - aux_sym_number_token1, - ACTIONS(5491), 1, - aux_sym_number_token2, - ACTIONS(5495), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5505), 1, - sym__brace_start, - ACTIONS(6546), 1, - anon_sym_DQUOTE, - ACTIONS(6550), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6552), 1, - anon_sym_BQUOTE, - ACTIONS(6554), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7133), 1, - sym_word, - ACTIONS(7139), 1, - sym__comment_word, - ACTIONS(7609), 1, - anon_sym_DOLLAR, - ACTIONS(6542), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6556), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7135), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7137), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2929), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129622] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6199), 1, - anon_sym_DOLLAR, - ACTIONS(6203), 1, - anon_sym_DQUOTE, - ACTIONS(6207), 1, - aux_sym_number_token1, - ACTIONS(6209), 1, - aux_sym_number_token2, - ACTIONS(6211), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6213), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 1, - anon_sym_BQUOTE, - ACTIONS(6217), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6227), 1, - sym__brace_start, - ACTIONS(7611), 1, - sym_word, - ACTIONS(7617), 1, - sym__comment_word, - ACTIONS(6195), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6219), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7613), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7615), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(875), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129686] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6044), 1, - anon_sym_DQUOTE, - ACTIONS(6048), 1, - aux_sym_number_token1, - ACTIONS(6050), 1, - aux_sym_number_token2, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6054), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6056), 1, - anon_sym_BQUOTE, - ACTIONS(6058), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6068), 1, - sym__brace_start, - ACTIONS(7457), 1, - sym_word, - ACTIONS(7463), 1, - sym__comment_word, - ACTIONS(7619), 1, - anon_sym_DOLLAR, - ACTIONS(6036), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6060), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7459), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7461), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2420), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129750] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(7299), 1, - sym_word, - ACTIONS(7307), 1, - sym__comment_word, - ACTIONS(7621), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7303), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7305), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1488), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129814] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(7623), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129878] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(7269), 1, - sym_word, - ACTIONS(7277), 1, - sym__comment_word, - ACTIONS(7625), 1, - anon_sym_DOLLAR, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7273), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7275), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1296), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [129942] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1899), 1, - aux_sym_number_token1, - ACTIONS(1901), 1, - aux_sym_number_token2, - ACTIONS(1905), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1919), 1, - sym__brace_start, - ACTIONS(5765), 1, - anon_sym_DQUOTE, - ACTIONS(5769), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5771), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7591), 1, - sym_word, - ACTIONS(7599), 1, - sym__comment_word, - ACTIONS(7627), 1, - anon_sym_DOLLAR, - ACTIONS(5759), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5775), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7595), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7597), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1060), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130006] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(7629), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130070] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 1, - anon_sym_DOLLAR, - ACTIONS(1525), 1, - aux_sym_number_token1, - ACTIONS(1527), 1, - aux_sym_number_token2, - ACTIONS(1531), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1547), 1, - sym__brace_start, - ACTIONS(6086), 1, - anon_sym_DQUOTE, - ACTIONS(6090), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6092), 1, - anon_sym_BQUOTE, - ACTIONS(6094), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7631), 1, - sym_word, - ACTIONS(7637), 1, - sym__comment_word, - ACTIONS(6080), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6096), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7633), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7635), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(804), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130134] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(7243), 1, - sym_word, - ACTIONS(7251), 1, - anon_sym_DQUOTE, - ACTIONS(7255), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7257), 1, - anon_sym_BQUOTE, - ACTIONS(7259), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7263), 1, - sym__comment_word, - ACTIONS(7639), 1, - anon_sym_DOLLAR, - ACTIONS(7245), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7249), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7253), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130198] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6822), 1, - anon_sym_LPAREN, - ACTIONS(6824), 1, - aux_sym__c_word_token1, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6830), 1, - anon_sym_DQUOTE, - ACTIONS(6832), 1, - aux_sym_number_token1, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(6836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6840), 1, - anon_sym_BQUOTE, - ACTIONS(6842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7643), 1, - anon_sym_LF, - STATE(2803), 1, - sym__c_terminator, - ACTIONS(6820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7641), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(4029), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2269), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [130262] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1525), 1, - aux_sym_number_token1, - ACTIONS(1527), 1, - aux_sym_number_token2, - ACTIONS(1531), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1547), 1, - sym__brace_start, - ACTIONS(6086), 1, - anon_sym_DQUOTE, - ACTIONS(6090), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6092), 1, - anon_sym_BQUOTE, - ACTIONS(6094), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7631), 1, - sym_word, - ACTIONS(7637), 1, - sym__comment_word, - ACTIONS(7645), 1, - anon_sym_DOLLAR, - ACTIONS(6080), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6096), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7633), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7635), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(804), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130326] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - anon_sym_DOLLAR, - ACTIONS(1899), 1, - aux_sym_number_token1, - ACTIONS(1901), 1, - aux_sym_number_token2, - ACTIONS(1905), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1919), 1, - sym__brace_start, - ACTIONS(5765), 1, - anon_sym_DQUOTE, - ACTIONS(5769), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5771), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7591), 1, - sym_word, - ACTIONS(7599), 1, - sym__comment_word, - ACTIONS(5759), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5775), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7595), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7597), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1060), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130390] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - ACTIONS(7187), 1, - sym_word, - ACTIONS(7193), 1, - sym__comment_word, - ACTIONS(7647), 1, - anon_sym_DOLLAR, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7189), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7191), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1611), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130454] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(162), 1, - aux_sym_number_token1, - ACTIONS(164), 1, - aux_sym_number_token2, - ACTIONS(168), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(182), 1, - sym__brace_start, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1107), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4900), 1, - anon_sym_BQUOTE, - ACTIONS(7187), 1, - sym_word, - ACTIONS(7193), 1, - sym__comment_word, - ACTIONS(7649), 1, - anon_sym_DOLLAR, - ACTIONS(1095), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1109), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7189), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7191), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1611), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130518] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5635), 1, - anon_sym_DQUOTE, - ACTIONS(5639), 1, - aux_sym_number_token1, - ACTIONS(5641), 1, - aux_sym_number_token2, - ACTIONS(5643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5645), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, - anon_sym_BQUOTE, - ACTIONS(5649), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5659), 1, - sym__brace_start, - ACTIONS(7399), 1, - sym_word, - ACTIONS(7405), 1, - sym__comment_word, - ACTIONS(7651), 1, - anon_sym_DOLLAR, - ACTIONS(5627), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5651), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7401), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7403), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2015), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130582] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(103), 1, - aux_sym_number_token1, - ACTIONS(105), 1, - aux_sym_number_token2, - ACTIONS(107), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(109), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(111), 1, - anon_sym_BQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(123), 1, - sym__brace_start, - ACTIONS(7653), 1, - sym_word, - ACTIONS(7655), 1, - anon_sym_DOLLAR, - ACTIONS(7661), 1, - sym__comment_word, - ACTIONS(75), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(115), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7657), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7659), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(351), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130646] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6688), 1, - anon_sym_DQUOTE, - ACTIONS(6692), 1, - aux_sym_number_token1, - ACTIONS(6694), 1, - aux_sym_number_token2, - ACTIONS(6696), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6700), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6702), 1, - anon_sym_BQUOTE, - ACTIONS(6704), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6710), 1, - sym__brace_start, - ACTIONS(7477), 1, - sym_word, - ACTIONS(7485), 1, - sym__comment_word, - ACTIONS(7663), 1, - anon_sym_DOLLAR, - ACTIONS(6682), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6706), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7481), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7483), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4105), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130710] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(49), 1, - aux_sym_number_token1, - ACTIONS(51), 1, - aux_sym_number_token2, - ACTIONS(53), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, - anon_sym_BQUOTE, - ACTIONS(59), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(7039), 1, - sym_word, - ACTIONS(7047), 1, - sym__comment_word, - ACTIONS(13), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(61), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7043), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7045), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1023), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130774] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1525), 1, - aux_sym_number_token1, - ACTIONS(1527), 1, - aux_sym_number_token2, - ACTIONS(1531), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1547), 1, - sym__brace_start, - ACTIONS(6086), 1, - anon_sym_DQUOTE, - ACTIONS(6090), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6092), 1, - anon_sym_BQUOTE, - ACTIONS(6094), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7631), 1, - sym_word, - ACTIONS(7637), 1, - sym__comment_word, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(6080), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6096), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7633), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7635), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(804), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130838] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5635), 1, - anon_sym_DQUOTE, - ACTIONS(5639), 1, - aux_sym_number_token1, - ACTIONS(5641), 1, - aux_sym_number_token2, - ACTIONS(5643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5645), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, - anon_sym_BQUOTE, - ACTIONS(5649), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5659), 1, - sym__brace_start, - ACTIONS(7399), 1, - sym_word, - ACTIONS(7405), 1, - sym__comment_word, - ACTIONS(7667), 1, - anon_sym_DOLLAR, - ACTIONS(5627), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5651), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7401), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7403), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2015), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130902] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_DOLLAR, - ACTIONS(2538), 1, - aux_sym_number_token1, - ACTIONS(2540), 1, - aux_sym_number_token2, - ACTIONS(2544), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2556), 1, - sym__brace_start, - ACTIONS(7049), 1, - sym_word, - ACTIONS(7057), 1, - anon_sym_DQUOTE, - ACTIONS(7061), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7063), 1, - anon_sym_BQUOTE, - ACTIONS(7065), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7069), 1, - sym__comment_word, - ACTIONS(7051), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7055), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7059), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7067), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1325), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [130966] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(7669), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131030] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7289), 1, - sym_word, - ACTIONS(7295), 1, - sym__comment_word, - ACTIONS(7671), 1, - anon_sym_DOLLAR, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7291), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7293), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4137), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131094] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(194), 1, - anon_sym_DOLLAR, - ACTIONS(198), 1, - anon_sym_DQUOTE, - ACTIONS(202), 1, - aux_sym_number_token1, - ACTIONS(204), 1, - aux_sym_number_token2, - ACTIONS(206), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(208), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(210), 1, - anon_sym_BQUOTE, - ACTIONS(212), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(218), 1, - sym__brace_start, - ACTIONS(7673), 1, - sym_word, - ACTIONS(7679), 1, - sym__comment_word, - ACTIONS(186), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7675), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7677), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(387), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131158] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(7681), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131222] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7107), 1, - sym_word, - ACTIONS(7115), 1, - sym__comment_word, - ACTIONS(7683), 1, - anon_sym_DOLLAR, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7111), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7113), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1435), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131286] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 1, - aux_sym_number_token1, - ACTIONS(2921), 1, - aux_sym_number_token2, - ACTIONS(2925), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2935), 1, - sym__brace_start, - ACTIONS(6564), 1, - anon_sym_DQUOTE, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6570), 1, - anon_sym_BQUOTE, - ACTIONS(6572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7107), 1, - sym_word, - ACTIONS(7115), 1, - sym__comment_word, - ACTIONS(7685), 1, - anon_sym_DOLLAR, - ACTIONS(6560), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7111), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7113), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1435), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131350] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(246), 1, - aux_sym_number_token1, - ACTIONS(248), 1, - aux_sym_number_token2, - ACTIONS(252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(264), 1, - sym__brace_start, - ACTIONS(1159), 1, - anon_sym_DQUOTE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(7299), 1, - sym_word, - ACTIONS(7307), 1, - sym__comment_word, - ACTIONS(7687), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7303), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7305), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1488), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131414] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4832), 1, - aux_sym_number_token1, - ACTIONS(4834), 1, - aux_sym_number_token2, - ACTIONS(4838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4850), 1, - sym__brace_start, - ACTIONS(5421), 1, - anon_sym_DQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5427), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7289), 1, - sym_word, - ACTIONS(7295), 1, - sym__comment_word, - ACTIONS(7689), 1, - anon_sym_DOLLAR, - ACTIONS(5415), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5431), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7291), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7293), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4137), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131478] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6486), 1, - anon_sym_DQUOTE, - ACTIONS(6490), 1, - aux_sym_number_token1, - ACTIONS(6492), 1, - aux_sym_number_token2, - ACTIONS(6494), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6496), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6498), 1, - anon_sym_BQUOTE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6506), 1, - sym__brace_start, - ACTIONS(7691), 1, - sym_word, - ACTIONS(7693), 1, - anon_sym_DOLLAR, - ACTIONS(7699), 1, - sym__comment_word, - ACTIONS(6480), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6502), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7695), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7697), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1721), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131542] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(103), 1, - aux_sym_number_token1, - ACTIONS(105), 1, - aux_sym_number_token2, - ACTIONS(107), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(109), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(111), 1, - anon_sym_BQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(123), 1, - sym__brace_start, - ACTIONS(7653), 1, - sym_word, - ACTIONS(7661), 1, - sym__comment_word, - ACTIONS(7701), 1, - anon_sym_DOLLAR, - ACTIONS(75), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(115), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7657), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7659), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(351), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131606] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5715), 1, - anon_sym_DQUOTE, - ACTIONS(5719), 1, - aux_sym_number_token1, - ACTIONS(5721), 1, - aux_sym_number_token2, - ACTIONS(5723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5727), 1, - anon_sym_BQUOTE, - ACTIONS(5729), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5739), 1, - sym__brace_start, - ACTIONS(7703), 1, - sym_word, - ACTIONS(7705), 1, - anon_sym_DOLLAR, - ACTIONS(7711), 1, - sym__comment_word, - ACTIONS(5707), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5731), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7707), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7709), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1205), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131670] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5715), 1, - anon_sym_DQUOTE, - ACTIONS(5719), 1, - aux_sym_number_token1, - ACTIONS(5721), 1, - aux_sym_number_token2, - ACTIONS(5723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5727), 1, - anon_sym_BQUOTE, - ACTIONS(5729), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5739), 1, - sym__brace_start, - ACTIONS(7703), 1, - sym_word, - ACTIONS(7711), 1, - sym__comment_word, - ACTIONS(7713), 1, - anon_sym_DOLLAR, - ACTIONS(5707), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5731), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7707), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7709), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1205), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131734] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(7089), 1, - sym_word, - ACTIONS(7095), 1, - sym__comment_word, - ACTIONS(7715), 1, - anon_sym_DOLLAR, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7091), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7093), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3174), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131798] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1991), 1, - anon_sym_DOLLAR, - ACTIONS(1997), 1, - aux_sym_number_token1, - ACTIONS(1999), 1, - aux_sym_number_token2, - ACTIONS(2003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2017), 1, - sym__brace_start, - ACTIONS(7557), 1, - sym_word, - ACTIONS(7565), 1, - anon_sym_DQUOTE, - ACTIONS(7569), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7571), 1, - anon_sym_BQUOTE, - ACTIONS(7573), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7577), 1, - sym__comment_word, - ACTIONS(7559), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7563), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7567), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7575), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(881), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131862] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4244), 1, - anon_sym_DQUOTE, - ACTIONS(4248), 1, - aux_sym_number_token1, - ACTIONS(4250), 1, - aux_sym_number_token2, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4256), 1, - anon_sym_BQUOTE, - ACTIONS(4258), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4264), 1, - sym__brace_start, - ACTIONS(7089), 1, - sym_word, - ACTIONS(7095), 1, - sym__comment_word, - ACTIONS(7717), 1, - anon_sym_DOLLAR, - ACTIONS(4236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7091), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7093), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3174), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131926] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(615), 1, - anon_sym_DQUOTE, - ACTIONS(619), 1, - aux_sym_number_token1, - ACTIONS(621), 1, - aux_sym_number_token2, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(635), 1, - sym__brace_start, - ACTIONS(4757), 1, - anon_sym_BQUOTE, - ACTIONS(6872), 1, - sym_word, - ACTIONS(6876), 1, - sym__comment_word, - ACTIONS(598), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6878), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6880), 2, - sym__special_character, - sym_test_operator, - STATE(1856), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [131990] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(7719), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132054] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(7721), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132118] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(198), 1, - anon_sym_DQUOTE, - ACTIONS(202), 1, - aux_sym_number_token1, - ACTIONS(204), 1, - aux_sym_number_token2, - ACTIONS(206), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(208), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(210), 1, - anon_sym_BQUOTE, - ACTIONS(212), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(218), 1, - sym__brace_start, - ACTIONS(7673), 1, - sym_word, - ACTIONS(7679), 1, - sym__comment_word, - ACTIONS(7723), 1, - anon_sym_DOLLAR, - ACTIONS(186), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7675), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7677), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(387), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132182] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(198), 1, - anon_sym_DQUOTE, - ACTIONS(202), 1, - aux_sym_number_token1, - ACTIONS(204), 1, - aux_sym_number_token2, - ACTIONS(206), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(208), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(210), 1, - anon_sym_BQUOTE, - ACTIONS(212), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(218), 1, - sym__brace_start, - ACTIONS(7673), 1, - sym_word, - ACTIONS(7679), 1, - sym__comment_word, - ACTIONS(7725), 1, - anon_sym_DOLLAR, - ACTIONS(186), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7675), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7677), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(387), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132246] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5791), 1, - anon_sym_DOLLAR, - ACTIONS(5795), 1, - anon_sym_DQUOTE, - ACTIONS(5799), 1, - aux_sym_number_token1, - ACTIONS(5801), 1, - aux_sym_number_token2, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5805), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5807), 1, - anon_sym_BQUOTE, - ACTIONS(5809), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5819), 1, - sym__brace_start, - ACTIONS(7269), 1, - sym_word, - ACTIONS(7277), 1, - sym__comment_word, - ACTIONS(5787), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5811), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7273), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7275), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1296), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132310] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2474), 1, - anon_sym_DOLLAR, - ACTIONS(2480), 1, - aux_sym_number_token1, - ACTIONS(2482), 1, - aux_sym_number_token2, - ACTIONS(2486), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2496), 1, - sym__brace_start, - ACTIONS(6528), 1, - anon_sym_DQUOTE, - ACTIONS(6532), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6534), 1, - anon_sym_BQUOTE, - ACTIONS(6536), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7515), 1, - sym_word, - ACTIONS(7523), 1, - sym__comment_word, - ACTIONS(6524), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6538), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7519), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7521), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1094), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132374] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6167), 1, - anon_sym_DQUOTE, - ACTIONS(6171), 1, - aux_sym_number_token1, - ACTIONS(6173), 1, - aux_sym_number_token2, - ACTIONS(6175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6177), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6179), 1, - anon_sym_BQUOTE, - ACTIONS(6181), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6191), 1, - sym__brace_start, - ACTIONS(7505), 1, - sym_word, - ACTIONS(7511), 1, - sym__comment_word, - ACTIONS(7727), 1, - anon_sym_DOLLAR, - ACTIONS(6159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6183), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7507), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7509), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3505), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132438] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(5857), 1, - anon_sym_DQUOTE, - ACTIONS(5861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, - anon_sym_BQUOTE, - ACTIONS(5865), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7097), 1, - sym_word, - ACTIONS(7105), 1, - sym__comment_word, - ACTIONS(7729), 1, - anon_sym_DOLLAR, - ACTIONS(5851), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7101), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7103), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1151), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132502] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6167), 1, - anon_sym_DQUOTE, - ACTIONS(6171), 1, - aux_sym_number_token1, - ACTIONS(6173), 1, - aux_sym_number_token2, - ACTIONS(6175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6177), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6179), 1, - anon_sym_BQUOTE, - ACTIONS(6181), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6191), 1, - sym__brace_start, - ACTIONS(7505), 1, - sym_word, - ACTIONS(7511), 1, - sym__comment_word, - ACTIONS(7731), 1, - anon_sym_DOLLAR, - ACTIONS(6159), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6183), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7507), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7509), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3505), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132566] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3096), 1, - anon_sym_DQUOTE, - ACTIONS(3100), 1, - aux_sym_number_token1, - ACTIONS(3102), 1, - aux_sym_number_token2, - ACTIONS(3104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3106), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3108), 1, - anon_sym_BQUOTE, - ACTIONS(3110), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3120), 1, - sym__brace_start, - ACTIONS(7581), 1, - sym_word, - ACTIONS(7587), 1, - sym__comment_word, - ACTIONS(7733), 1, - anon_sym_DOLLAR, - ACTIONS(3090), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3112), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7583), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7585), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1767), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132630] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6203), 1, - anon_sym_DQUOTE, - ACTIONS(6207), 1, - aux_sym_number_token1, - ACTIONS(6209), 1, - aux_sym_number_token2, - ACTIONS(6211), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6213), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 1, - anon_sym_BQUOTE, - ACTIONS(6217), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6227), 1, - sym__brace_start, - ACTIONS(7611), 1, - sym_word, - ACTIONS(7617), 1, - sym__comment_word, - ACTIONS(7735), 1, - anon_sym_DOLLAR, - ACTIONS(6195), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6219), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7613), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7615), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(875), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132694] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6203), 1, - anon_sym_DQUOTE, - ACTIONS(6207), 1, - aux_sym_number_token1, - ACTIONS(6209), 1, - aux_sym_number_token2, - ACTIONS(6211), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6213), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 1, - anon_sym_BQUOTE, - ACTIONS(6217), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6227), 1, - sym__brace_start, - ACTIONS(7611), 1, - sym_word, - ACTIONS(7617), 1, - sym__comment_word, - ACTIONS(7737), 1, - anon_sym_DOLLAR, - ACTIONS(6195), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6219), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7613), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7615), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(875), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132758] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6482), 1, - anon_sym_DOLLAR, - ACTIONS(6486), 1, - anon_sym_DQUOTE, - ACTIONS(6490), 1, - aux_sym_number_token1, - ACTIONS(6492), 1, - aux_sym_number_token2, - ACTIONS(6494), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6496), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6498), 1, - anon_sym_BQUOTE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6506), 1, - sym__brace_start, - ACTIONS(7691), 1, - sym_word, - ACTIONS(7699), 1, - sym__comment_word, - ACTIONS(6480), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6502), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7695), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7697), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1721), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132822] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(308), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - aux_sym_number_token1, - ACTIONS(314), 1, - aux_sym_number_token2, - ACTIONS(316), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(320), 1, - anon_sym_BQUOTE, - ACTIONS(322), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(332), 1, - sym__brace_start, - ACTIONS(7489), 1, - sym_word, - ACTIONS(7495), 1, - sym__comment_word, - ACTIONS(7739), 1, - anon_sym_DOLLAR, - ACTIONS(272), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7491), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7493), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(423), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132886] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, - sym_word, - ACTIONS(7087), 1, - sym__comment_word, - ACTIONS(7741), 1, - anon_sym_DOLLAR, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7083), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7085), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [132950] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3096), 1, - anon_sym_DQUOTE, - ACTIONS(3100), 1, - aux_sym_number_token1, - ACTIONS(3102), 1, - aux_sym_number_token2, - ACTIONS(3104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3106), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3108), 1, - anon_sym_BQUOTE, - ACTIONS(3110), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3120), 1, - sym__brace_start, - ACTIONS(7581), 1, - sym_word, - ACTIONS(7587), 1, - sym__comment_word, - ACTIONS(7743), 1, - anon_sym_DOLLAR, - ACTIONS(3090), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3112), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7583), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7585), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1767), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133014] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6756), 1, - anon_sym_DOLLAR, - ACTIONS(6760), 1, - anon_sym_DQUOTE, - ACTIONS(6764), 1, - aux_sym_number_token1, - ACTIONS(6766), 1, - aux_sym_number_token2, - ACTIONS(6768), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6770), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6772), 1, - anon_sym_BQUOTE, - ACTIONS(6774), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6780), 1, - sym__brace_start, - ACTIONS(7311), 1, - sym_word, - ACTIONS(7319), 1, - sym__comment_word, - ACTIONS(6754), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6776), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7315), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7317), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2875), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133078] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(308), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - aux_sym_number_token1, - ACTIONS(314), 1, - aux_sym_number_token2, - ACTIONS(316), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(320), 1, - anon_sym_BQUOTE, - ACTIONS(322), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(332), 1, - sym__brace_start, - ACTIONS(7489), 1, - sym_word, - ACTIONS(7495), 1, - sym__comment_word, - ACTIONS(7745), 1, - anon_sym_DOLLAR, - ACTIONS(272), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7491), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7493), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(423), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133142] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3447), 1, - anon_sym_DQUOTE, - ACTIONS(3451), 1, - aux_sym_number_token1, - ACTIONS(3453), 1, - aux_sym_number_token2, - ACTIONS(3455), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3457), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3459), 1, - anon_sym_BQUOTE, - ACTIONS(3461), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3469), 1, - sym__brace_start, - ACTIONS(7527), 1, - sym_word, - ACTIONS(7533), 1, - sym__comment_word, - ACTIONS(7747), 1, - anon_sym_DOLLAR, - ACTIONS(3441), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3463), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7529), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7531), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2010), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133206] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3447), 1, - anon_sym_DQUOTE, - ACTIONS(3451), 1, - aux_sym_number_token1, - ACTIONS(3453), 1, - aux_sym_number_token2, - ACTIONS(3455), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3457), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3459), 1, - anon_sym_BQUOTE, - ACTIONS(3461), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3469), 1, - sym__brace_start, - ACTIONS(7527), 1, - sym_word, - ACTIONS(7533), 1, - sym__comment_word, - ACTIONS(7749), 1, - anon_sym_DOLLAR, - ACTIONS(3441), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3463), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7529), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7531), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2010), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133270] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DOLLAR, - ACTIONS(99), 1, - anon_sym_DQUOTE, - ACTIONS(103), 1, - aux_sym_number_token1, - ACTIONS(105), 1, - aux_sym_number_token2, - ACTIONS(107), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(109), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(111), 1, - anon_sym_BQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(123), 1, - sym__brace_start, - ACTIONS(7653), 1, - sym_word, - ACTIONS(7661), 1, - sym__comment_word, - ACTIONS(75), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(115), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7657), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7659), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(351), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133334] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(7751), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133398] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 1, - anon_sym_DQUOTE, - ACTIONS(6734), 1, - aux_sym_number_token1, - ACTIONS(6736), 1, - aux_sym_number_token2, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6740), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6742), 1, - anon_sym_BQUOTE, - ACTIONS(6744), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6750), 1, - sym__brace_start, - ACTIONS(7081), 1, - sym_word, - ACTIONS(7087), 1, - sym__comment_word, - ACTIONS(7753), 1, - anon_sym_DOLLAR, - ACTIONS(6724), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6746), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7083), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7085), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2878), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133462] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_DQUOTE, - ACTIONS(5683), 1, - aux_sym_number_token1, - ACTIONS(5685), 1, - aux_sym_number_token2, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5689), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5691), 1, - anon_sym_BQUOTE, - ACTIONS(5693), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5703), 1, - sym__brace_start, - ACTIONS(7163), 1, - sym_word, - ACTIONS(7171), 1, - sym__comment_word, - ACTIONS(7755), 1, - anon_sym_DOLLAR, - ACTIONS(5671), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5695), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7167), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7169), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2793), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133526] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(5857), 1, - anon_sym_DQUOTE, - ACTIONS(5861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, - anon_sym_BQUOTE, - ACTIONS(5865), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7097), 1, - sym_word, - ACTIONS(7105), 1, - sym__comment_word, - ACTIONS(7757), 1, - anon_sym_DOLLAR, - ACTIONS(5851), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7101), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7103), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1151), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133590] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(7357), 1, - sym_word, - ACTIONS(7363), 1, - sym__comment_word, - ACTIONS(7759), 1, - anon_sym_DOLLAR, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7359), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7361), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2240), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133654] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5711), 1, - anon_sym_DOLLAR, - ACTIONS(5715), 1, - anon_sym_DQUOTE, - ACTIONS(5719), 1, - aux_sym_number_token1, - ACTIONS(5721), 1, - aux_sym_number_token2, - ACTIONS(5723), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5725), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5727), 1, - anon_sym_BQUOTE, - ACTIONS(5729), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5739), 1, - sym__brace_start, - ACTIONS(7703), 1, - sym_word, - ACTIONS(7711), 1, - sym__comment_word, - ACTIONS(5707), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5731), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7707), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7709), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1205), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133718] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1047), 1, - anon_sym_DQUOTE, - ACTIONS(1051), 1, - aux_sym_number_token1, - ACTIONS(1053), 1, - aux_sym_number_token2, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, - anon_sym_BQUOTE, - ACTIONS(1061), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym__brace_start, - ACTIONS(7437), 1, - sym_word, - ACTIONS(7443), 1, - sym__comment_word, - ACTIONS(7761), 1, - anon_sym_DOLLAR, - ACTIONS(1033), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7439), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7441), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1679), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133782] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1047), 1, - anon_sym_DQUOTE, - ACTIONS(1051), 1, - aux_sym_number_token1, - ACTIONS(1053), 1, - aux_sym_number_token2, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, - anon_sym_BQUOTE, - ACTIONS(1061), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym__brace_start, - ACTIONS(7437), 1, - sym_word, - ACTIONS(7443), 1, - sym__comment_word, - ACTIONS(7763), 1, - anon_sym_DOLLAR, - ACTIONS(1033), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1063), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7439), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7441), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1679), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133846] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_DOLLAR, - ACTIONS(566), 1, - anon_sym_DQUOTE, - ACTIONS(570), 1, - aux_sym_number_token1, - ACTIONS(572), 1, - aux_sym_number_token2, - ACTIONS(574), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(576), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(578), 1, - anon_sym_BQUOTE, - ACTIONS(580), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(590), 1, - sym__brace_start, - ACTIONS(7331), 1, - sym_word, - ACTIONS(7339), 1, - sym__comment_word, - ACTIONS(546), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(582), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7335), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7337), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(822), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133910] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6486), 1, - anon_sym_DQUOTE, - ACTIONS(6490), 1, - aux_sym_number_token1, - ACTIONS(6492), 1, - aux_sym_number_token2, - ACTIONS(6494), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6496), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6498), 1, - anon_sym_BQUOTE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6506), 1, - sym__brace_start, - ACTIONS(7691), 1, - sym_word, - ACTIONS(7699), 1, - sym__comment_word, - ACTIONS(7765), 1, - anon_sym_DOLLAR, - ACTIONS(6480), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6502), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7695), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7697), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1721), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [133974] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1925), 1, - anon_sym_DOLLAR, - ACTIONS(1931), 1, - aux_sym_number_token1, - ACTIONS(1933), 1, - aux_sym_number_token2, - ACTIONS(1937), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1951), 1, - sym__brace_start, - ACTIONS(5857), 1, - anon_sym_DQUOTE, - ACTIONS(5861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, - anon_sym_BQUOTE, - ACTIONS(5865), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7097), 1, - sym_word, - ACTIONS(7105), 1, - sym__comment_word, - ACTIONS(5851), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7101), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7103), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1151), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [134038] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6000), 1, - anon_sym_DOLLAR, - ACTIONS(6004), 1, - anon_sym_DQUOTE, - ACTIONS(6008), 1, - aux_sym_number_token1, - ACTIONS(6010), 1, - aux_sym_number_token2, - ACTIONS(6012), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6014), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6016), 1, - anon_sym_BQUOTE, - ACTIONS(6018), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6028), 1, - sym__brace_start, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7079), 1, - sym__comment_word, - ACTIONS(5996), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6020), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7075), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7077), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2736), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [134102] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(446), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - aux_sym_number_token1, - ACTIONS(452), 1, - aux_sym_number_token2, - ACTIONS(454), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(456), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(458), 1, - anon_sym_BQUOTE, - ACTIONS(460), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(470), 1, - sym__brace_start, - ACTIONS(7535), 1, - sym_word, - ACTIONS(7541), 1, - sym__comment_word, - ACTIONS(7767), 1, - anon_sym_DOLLAR, - ACTIONS(406), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(462), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7537), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7539), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(694), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [134166] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(446), 1, - anon_sym_DQUOTE, - ACTIONS(450), 1, - aux_sym_number_token1, - ACTIONS(452), 1, - aux_sym_number_token2, - ACTIONS(454), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(456), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(458), 1, - anon_sym_BQUOTE, - ACTIONS(460), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(470), 1, - sym__brace_start, - ACTIONS(7535), 1, - sym_word, - ACTIONS(7541), 1, - sym__comment_word, - ACTIONS(7769), 1, - anon_sym_DOLLAR, - ACTIONS(406), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(462), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7537), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7539), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(694), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [134230] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2508), 1, - aux_sym_number_token1, - ACTIONS(2510), 1, - aux_sym_number_token2, - ACTIONS(2514), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2526), 1, - sym__brace_start, - ACTIONS(7243), 1, - sym_word, - ACTIONS(7251), 1, - anon_sym_DQUOTE, - ACTIONS(7255), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7257), 1, - anon_sym_BQUOTE, - ACTIONS(7259), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7263), 1, - sym__comment_word, - ACTIONS(7771), 1, - anon_sym_DOLLAR, - ACTIONS(7245), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7249), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7253), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [134294] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 1, - anon_sym_DQUOTE, - ACTIONS(1408), 1, - aux_sym_number_token1, - ACTIONS(1410), 1, - aux_sym_number_token2, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1436), 1, - sym__brace_start, - ACTIONS(7357), 1, - sym_word, - ACTIONS(7363), 1, - sym__comment_word, - ACTIONS(7773), 1, - anon_sym_DOLLAR, - ACTIONS(1380), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7359), 2, - sym__special_character, - sym_test_operator, - ACTIONS(7361), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2240), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [134358] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3244), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3477), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2720), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134397] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3246), 1, - anon_sym_LT_LT_LT, - ACTIONS(7777), 1, - anon_sym_LF, - ACTIONS(7779), 1, - sym_file_descriptor, - ACTIONS(3240), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3244), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3308), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3310), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2720), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7775), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [134448] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - aux_sym_concatenation_token1, - ACTIONS(7784), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1258), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [134489] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7501), 1, - sym__concat, - STATE(2790), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1242), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [134530] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7791), 1, - sym_variable_name, - STATE(4363), 1, - sym_subscript, - ACTIONS(7789), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2714), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7787), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134571] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7802), 1, - anon_sym_LF, - ACTIONS(7804), 1, - anon_sym_LT_LT_LT, - ACTIONS(7807), 1, - sym_file_descriptor, - ACTIONS(7796), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2715), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7799), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7794), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP, - [134616] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3246), 1, - anon_sym_LT_LT_LT, - ACTIONS(7779), 1, - sym_file_descriptor, - ACTIONS(7810), 1, - anon_sym_LF, - ACTIONS(3238), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3240), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3244), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2857), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2720), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7775), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [134667] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7501), 1, - sym__concat, - STATE(2724), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3837), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134708] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7501), 1, - sym__concat, - STATE(2725), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3841), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134749] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2720), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134786] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3246), 1, - anon_sym_LT_LT_LT, - ACTIONS(7779), 1, - sym_file_descriptor, - ACTIONS(7814), 1, - anon_sym_LF, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2715), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7775), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7812), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP, - [134831] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2777), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1242), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [134872] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7824), 1, - sym_variable_name, - STATE(4363), 1, - sym_subscript, - ACTIONS(7822), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2714), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7820), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134913] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7826), 1, - aux_sym_concatenation_token1, - ACTIONS(7829), 1, - sym__concat, - STATE(2723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1258), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134954] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7832), 1, - sym__concat, - STATE(2723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1252), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134995] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7834), 1, - sym__concat, - STATE(2723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1246), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [135036] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7836), 1, - aux_sym_concatenation_token1, - ACTIONS(7839), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1258), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [135076] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3323), 1, - anon_sym_LT_LT_LT, - ACTIONS(7844), 1, - anon_sym_LF, - ACTIONS(7846), 1, - sym_file_descriptor, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3319), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3321), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3339), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(2857), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7842), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [135126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1294), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [135160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1280), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [135194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1284), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1338), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135262] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1272), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135296] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2816), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1242), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [135336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1334), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1330), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1258), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1276), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135472] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7852), 1, - sym__special_character, - STATE(2738), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1352), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [135510] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1322), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [135544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1330), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [135578] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1322), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135612] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2857), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1242), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - anon_sym_BQUOTE, - [135652] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1302), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [135686] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7855), 1, - sym__concat, - STATE(2762), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1252), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [135726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1280), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1318), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [135794] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1346), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135828] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3323), 1, - anon_sym_LT_LT_LT, - ACTIONS(7846), 1, - sym_file_descriptor, - ACTIONS(7857), 1, - anon_sym_LF, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3317), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(3319), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3321), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3310), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7842), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [135878] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7859), 1, - sym_variable_name, - STATE(4358), 1, - sym_subscript, - ACTIONS(7822), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2752), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7820), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [135918] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [135954] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1342), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [135988] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7861), 1, - sym_variable_name, - STATE(4358), 1, - sym_subscript, - ACTIONS(7789), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2752), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7787), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [136028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1334), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1298), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [136096] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1272), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136130] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7864), 1, - sym__special_character, - STATE(2758), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3841), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [136168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1310), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [136202] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7866), 1, - sym__special_character, - STATE(2758), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1352), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [136240] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3321), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3477), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2780), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [136278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1268), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [136312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1268), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [136346] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7869), 1, - aux_sym_concatenation_token1, - ACTIONS(7872), 1, - sym__concat, - STATE(2762), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1258), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [136386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1276), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1298), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136454] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2744), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7877), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7875), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [136494] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2777), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7881), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7879), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [136534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1326), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136568] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1294), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [136602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1326), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [136636] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1314), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136670] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1302), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [136704] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1346), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136738] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2835), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1242), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [136778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1310), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136812] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1342), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [136846] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2831), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1242), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [136886] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7883), 1, - sym__concat, - STATE(2762), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1246), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [136926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1318), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [136960] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2777), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7887), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7885), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [137000] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3323), 1, - anon_sym_LT_LT_LT, - ACTIONS(7814), 1, - anon_sym_LF, - ACTIONS(7846), 1, - sym_file_descriptor, - ACTIONS(3242), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2783), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7842), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7812), 9, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP, - [137044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1284), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [137078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1268), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [137112] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7802), 1, - anon_sym_LF, - ACTIONS(7892), 1, - anon_sym_LT_LT_LT, - ACTIONS(7895), 1, - sym_file_descriptor, - ACTIONS(7796), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2783), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7889), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7794), 9, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP, - [137156] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1314), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [137190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1268), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [137224] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7501), 1, - sym__concat, - STATE(2792), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3837), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [137264] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7501), 1, - sym__concat, - STATE(2790), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3841), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [137304] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7898), 1, - sym__special_character, - STATE(2738), 1, - aux_sym__literal_repeat1, - ACTIONS(3843), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3841), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [137342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1338), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [137376] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7900), 1, - sym__concat, - STATE(2723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1246), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [137416] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2744), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7904), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7902), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [137456] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - aux_sym_concatenation_token1, - ACTIONS(7906), 1, - sym__concat, - STATE(2723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1252), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [137496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1258), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [137530] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2820), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3837), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [137569] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2930), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1242), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - anon_sym_BQUOTE, - [137608] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [137643] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7802), 1, - anon_sym_LF, - ACTIONS(7918), 1, - anon_sym_LT_LT_LT, - ACTIONS(7921), 1, - sym_file_descriptor, - ACTIONS(7912), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2797), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7794), 8, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(7915), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [137686] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2857), 1, - anon_sym_RPAREN, - ACTIONS(3434), 1, - anon_sym_LT_LT_LT, - ACTIONS(7844), 1, - anon_sym_LF, - ACTIONS(7926), 1, - sym_file_descriptor, - ACTIONS(3428), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3339), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7924), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [137735] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7930), 1, - anon_sym_LF, - ACTIONS(7932), 1, - sym_file_descriptor, - STATE(2886), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7775), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7928), 13, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [137774] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(7936), 1, - sym_file_descriptor, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(7814), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2809), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7812), 7, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(7934), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [137817] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7938), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4160), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [137874] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7962), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4251), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [137931] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7964), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4214), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [137988] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2831), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3841), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [138027] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2816), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3841), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [138066] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1318), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [138099] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3310), 1, - anon_sym_BQUOTE, - ACTIONS(3833), 1, - anon_sym_LT_LT_LT, - ACTIONS(7968), 1, - anon_sym_LF, - ACTIONS(7970), 1, - sym_file_descriptor, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3740), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3831), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3829), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2902), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7966), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [138148] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1326), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [138181] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7975), 1, - anon_sym_LT_LT_LT, - ACTIONS(7978), 1, - sym_file_descriptor, - ACTIONS(7802), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7912), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2809), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7794), 7, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(7972), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [138224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1326), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [138257] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3987), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(7983), 1, - sym__concat, - STATE(2891), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3985), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [138296] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3991), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(7983), 1, - sym__concat, - STATE(2860), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3989), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [138335] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7985), 1, - sym__special_character, - STATE(2895), 1, - aux_sym__literal_repeat1, - ACTIONS(7881), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7879), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [138372] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2800), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [138407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1298), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [138440] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7987), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1246), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [138479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1268), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [138512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1242), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - anon_sym_BQUOTE, - [138545] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7989), 1, - sym_variable_name, - STATE(4295), 1, - sym_subscript, - STATE(2861), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7822), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7820), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [138584] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7991), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1252), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [138623] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2855), 1, - ts_builtin_sym_end, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(7936), 1, - sym_file_descriptor, - ACTIONS(7993), 1, - anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3479), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3550), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3667), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2800), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7934), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [138672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1298), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [138705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1268), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [138738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1310), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [138771] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3479), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3477), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2800), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 16, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [138808] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2965), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1242), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [138847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1346), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [138880] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1342), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [138913] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7995), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4267), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [138970] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(7983), 1, - sym__concat, - STATE(2860), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1242), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [139009] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7997), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1246), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [139048] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7999), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1252), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [139087] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3310), 1, - anon_sym_RPAREN, - ACTIONS(3434), 1, - anon_sym_LT_LT_LT, - ACTIONS(7857), 1, - anon_sym_LF, - ACTIONS(7926), 1, - sym_file_descriptor, - ACTIONS(3428), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3432), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3317), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7924), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [139136] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8001), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4279), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [139193] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(8003), 1, - sym__concat, - STATE(2762), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1246), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [139232] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(8005), 1, - sym__concat, - STATE(2762), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1252), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [139271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1314), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [139304] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1294), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [139337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1342), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [139370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1268), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [139403] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8007), 1, - sym__special_character, - STATE(2876), 1, - aux_sym__literal_repeat1, - ACTIONS(7887), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7885), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [139440] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1268), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [139473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1346), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [139506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1338), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [139539] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3477), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 17, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [139576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1280), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [139609] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7985), 1, - sym__special_character, - STATE(2895), 1, - aux_sym__literal_repeat1, - ACTIONS(7887), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7885), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [139646] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2915), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1242), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [139685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1302), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [139718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1310), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [139751] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3546), 1, - ts_builtin_sym_end, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(7936), 1, - sym_file_descriptor, - ACTIONS(8009), 1, - anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3479), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3550), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3548), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2800), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7934), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [139800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1276), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [139833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1272), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [139866] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3434), 1, - anon_sym_LT_LT_LT, - ACTIONS(7814), 1, - anon_sym_LF, - ACTIONS(7926), 1, - sym_file_descriptor, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2797), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7812), 8, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(7924), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [139909] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2857), 1, - anon_sym_BQUOTE, - ACTIONS(3833), 1, - anon_sym_LT_LT_LT, - ACTIONS(7970), 1, - sym_file_descriptor, - ACTIONS(8011), 1, - anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3740), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3831), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3835), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2902), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7966), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [139958] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(8013), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1252), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [139997] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(8015), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1246), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [140036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1318), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [140069] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8017), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4207), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [140126] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(8019), 1, - sym__concat, - STATE(2866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [140165] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8021), 1, - sym_variable_name, - STATE(4295), 1, - sym_subscript, - STATE(2861), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7789), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7787), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [140204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1272), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [140237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1334), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [140270] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8007), 1, - sym__special_character, - STATE(2876), 1, - aux_sym__literal_repeat1, - ACTIONS(7881), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7879), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [140307] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8024), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4247), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [140364] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 1, - sym__brace_start, - ACTIONS(8026), 1, - aux_sym_concatenation_token1, - ACTIONS(8029), 1, - sym__concat, - STATE(2866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [140403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1330), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [140436] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8032), 1, - sym_variable_name, - STATE(4391), 1, - sym_subscript, - ACTIONS(7789), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2868), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7787), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [140475] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2857), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3841), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [140514] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2856), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3837), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [140553] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3477), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3740), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2902), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 17, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [140590] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8035), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4202), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [140647] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7802), 1, - anon_sym_LF, - ACTIONS(8040), 1, - anon_sym_LT_LT_LT, - ACTIONS(8043), 1, - sym_file_descriptor, - ACTIONS(7912), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2873), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7794), 8, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - anon_sym_BQUOTE, - ACTIONS(8037), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [140690] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2902), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [140725] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1258), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [140758] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8046), 1, - sym__special_character, - STATE(2876), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1352), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [140795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1334), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [140828] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1258), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [140861] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1322), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [140894] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1330), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [140927] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1242), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [140960] = 15, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8049), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4225), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [141017] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2832), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3837), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [141056] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2835), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7887), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7885), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [141095] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8051), 1, - sym_variable_name, - STATE(4376), 1, - sym_subscript, - ACTIONS(7789), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2885), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7787), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [141134] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8059), 1, - anon_sym_LF, - ACTIONS(8061), 1, - sym_file_descriptor, - STATE(2886), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8056), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8054), 13, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [141173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1314), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [141206] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1338), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [141239] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1284), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [141272] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2836), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7904), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7902), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [141311] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(8064), 1, - sym__concat, - STATE(2866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [141350] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8066), 1, - sym_variable_name, - STATE(4391), 1, - sym_subscript, - ACTIONS(7822), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2868), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7820), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [141389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1280), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [141422] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2836), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7877), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7875), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [141461] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8068), 1, - sym__special_character, - STATE(2895), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1352), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [141498] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1294), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [141531] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2916), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1242), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [141570] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1322), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [141603] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7816), 1, - aux_sym_concatenation_token1, - ACTIONS(7818), 1, - sym__concat, - STATE(2835), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7881), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7879), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [141642] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8071), 1, - sym_variable_name, - STATE(4376), 1, - sym_subscript, - ACTIONS(7822), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2885), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7820), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [141681] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1284), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [141714] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, - anon_sym_LT_LT_LT, - ACTIONS(7814), 1, - anon_sym_LF, - ACTIONS(7970), 1, - sym_file_descriptor, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2873), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7812), 8, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - anon_sym_BQUOTE, - ACTIONS(7966), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [141757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1276), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [141790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1302), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [141823] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [141857] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(8073), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1252), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [141895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1242), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - anon_sym_BQUOTE, - [141927] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 2, - sym__concat, - sym__brace_start, - ACTIONS(1318), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [141959] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(8077), 1, - anon_sym_LF, - ACTIONS(8079), 1, - sym_file_descriptor, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3916), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [142005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4376), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4374), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [142037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 2, - sym__concat, - sym__brace_start, - ACTIONS(1326), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [142069] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(8079), 1, - sym_file_descriptor, - ACTIONS(8081), 1, - anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3920), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [142115] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(8083), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1252), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142153] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(8079), 1, - sym_file_descriptor, - ACTIONS(8085), 1, - anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3918), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [142199] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(8087), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1246), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142237] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(8089), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1246), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142275] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3016), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1242), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [142313] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(8091), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1252), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142351] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2960), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7877), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7875), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142389] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2906), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7877), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7875), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [142427] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2930), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7881), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7879), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [142465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 2, - sym__concat, - sym__brace_start, - ACTIONS(1268), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [142497] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 2, - sym__concat, - sym__brace_start, - ACTIONS(1268), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [142529] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2906), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7904), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7902), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [142567] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8093), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(7789), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2925), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7787), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142605] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 2, - sym__concat, - sym__brace_start, - ACTIONS(1314), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [142637] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2930), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7887), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7885), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [142675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 2, - sym__concat, - sym__brace_start, - ACTIONS(1338), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [142707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 2, - sym__concat, - sym__brace_start, - ACTIONS(1258), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [142739] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(8096), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1246), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [142777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1242), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [142809] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2965), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7881), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7879), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 2, - sym__concat, - sym__brace_start, - ACTIONS(1302), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [142879] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(8079), 1, - sym_file_descriptor, - ACTIONS(8098), 1, - anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3900), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [142925] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2960), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7904), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7902), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [142963] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(8079), 1, - sym_file_descriptor, - ACTIONS(8100), 1, - anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3791), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [143009] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_LPAREN, - ACTIONS(8106), 1, - aux_sym__c_word_token1, - ACTIONS(8108), 1, - anon_sym_DOLLAR, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, - aux_sym_number_token1, - ACTIONS(8114), 1, - aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, - anon_sym_BQUOTE, - ACTIONS(8122), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8102), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4278), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2303), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 2, - sym__concat, - sym__brace_start, - ACTIONS(1342), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [143095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 2, - sym__concat, - sym__brace_start, - ACTIONS(1346), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [143127] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2965), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7887), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7885), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [143165] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7802), 1, - anon_sym_LF, - ACTIONS(8127), 1, - anon_sym_LT_LT_LT, - ACTIONS(8130), 1, - sym_file_descriptor, - ACTIONS(7912), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2941), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7794), 7, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(8124), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [143207] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7932), 1, - sym_file_descriptor, - ACTIONS(8135), 1, - anon_sym_LF, - STATE(3064), 1, - sym_file_redirect, - ACTIONS(7775), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8133), 13, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [143245] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_LPAREN, - ACTIONS(8106), 1, - aux_sym__c_word_token1, - ACTIONS(8108), 1, - anon_sym_DOLLAR, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, - aux_sym_number_token1, - ACTIONS(8114), 1, - aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, - anon_sym_BQUOTE, - ACTIONS(8122), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8102), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4340), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2303), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143299] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_LPAREN, - ACTIONS(8106), 1, - aux_sym__c_word_token1, - ACTIONS(8108), 1, - anon_sym_DOLLAR, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, - aux_sym_number_token1, - ACTIONS(8114), 1, - aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, - anon_sym_BQUOTE, - ACTIONS(8122), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8102), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4333), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2303), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143353] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3477), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 16, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [143389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 2, - sym__concat, - sym__brace_start, - ACTIONS(1294), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [143421] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7932), 1, - sym_file_descriptor, - ACTIONS(8139), 1, - anon_sym_LF, - STATE(3086), 1, - sym_file_redirect, - ACTIONS(7775), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8137), 13, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [143459] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_LPAREN, - ACTIONS(8106), 1, - aux_sym__c_word_token1, - ACTIONS(8108), 1, - anon_sym_DOLLAR, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, - aux_sym_number_token1, - ACTIONS(8114), 1, - aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, - anon_sym_BQUOTE, - ACTIONS(8122), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8102), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4174), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2303), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4376), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(4374), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [143545] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7932), 1, - sym_file_descriptor, - ACTIONS(8143), 1, - anon_sym_LF, - STATE(3031), 1, - sym_file_redirect, - ACTIONS(7775), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8141), 13, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [143583] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3837), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [143615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 2, - sym__concat, - sym__brace_start, - ACTIONS(1284), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [143647] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(7814), 1, - anon_sym_LF, - ACTIONS(8079), 1, - sym_file_descriptor, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2941), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7812), 7, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(8075), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [143689] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(8079), 1, - sym_file_descriptor, - ACTIONS(8145), 1, - anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3756), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [143735] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2913), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3837), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [143773] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(8079), 1, - sym_file_descriptor, - ACTIONS(8147), 1, - anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3898), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [143819] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4348), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 2, - sym__concat, - sym__brace_start, - ACTIONS(1272), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [143905] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3762), 1, - anon_sym_LT_LT_LT, - ACTIONS(8079), 1, - sym_file_descriptor, - ACTIONS(8149), 1, - anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3758), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3760), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3896), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8075), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [143951] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(8151), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1252), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [143989] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(4370), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [144021] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 2, - sym__concat, - sym__brace_start, - ACTIONS(1310), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [144053] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - aux_sym__c_word_token1, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4349), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2371), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [144107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 2, - sym__concat, - sym__brace_start, - ACTIONS(1322), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [144139] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(8153), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1246), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [144177] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2918), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7904), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7902), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [144215] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_LPAREN, - ACTIONS(8106), 1, - aux_sym__c_word_token1, - ACTIONS(8108), 1, - anon_sym_DOLLAR, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, - aux_sym_number_token1, - ACTIONS(8114), 1, - aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, - anon_sym_BQUOTE, - ACTIONS(8122), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8102), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4155), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2303), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [144269] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4370), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [144301] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 2, - sym__concat, - sym__brace_start, - ACTIONS(1298), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [144333] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8059), 1, - anon_sym_LF, - ACTIONS(8158), 1, - sym_file_descriptor, - STATE(2970), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8155), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8054), 12, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [144371] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2918), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7877), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7875), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [144409] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2915), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7881), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7879), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [144447] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(2916), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3841), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [144485] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7930), 1, - anon_sym_LF, - ACTIONS(8161), 1, - sym_file_descriptor, - STATE(2970), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7842), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7928), 12, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [144523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3837), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [144555] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(8165), 1, - anon_sym_LPAREN, - ACTIONS(8167), 1, - aux_sym__c_word_token1, - ACTIONS(8169), 1, - anon_sym_DQUOTE, - ACTIONS(8171), 1, - aux_sym_number_token1, - ACTIONS(8173), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8175), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8177), 1, - anon_sym_BQUOTE, - ACTIONS(8179), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8163), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4134), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2269), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [144609] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8181), 1, - sym_variable_name, - STATE(4383), 1, - sym_subscript, - ACTIONS(7822), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(2925), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7820), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [144647] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(8165), 1, - anon_sym_LPAREN, - ACTIONS(8167), 1, - aux_sym__c_word_token1, - ACTIONS(8169), 1, - anon_sym_DQUOTE, - ACTIONS(8171), 1, - aux_sym_number_token1, - ACTIONS(8173), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8175), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8177), 1, - anon_sym_BQUOTE, - ACTIONS(8179), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8163), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4126), 2, - sym__c_expression, - sym__c_variable_assignment, - STATE(2269), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [144701] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 2, - sym__concat, - sym__brace_start, - ACTIONS(1280), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [144733] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 2, - sym__concat, - sym__brace_start, - ACTIONS(1276), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [144765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 2, - sym__concat, - sym__brace_start, - ACTIONS(1330), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [144797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 2, - sym__concat, - sym__brace_start, - ACTIONS(1334), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [144829] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(2915), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7887), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7885), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [144867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8183), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8185), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [144898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8189), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8187), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [144929] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8191), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8193), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [144960] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3020), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8195), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1244), 12, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [144995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8197), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8199), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [145026] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3017), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7904), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7902), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8203), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8201), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145094] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8207), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8205), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8209), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8211), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [145156] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8213), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8215), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [145187] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8189), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8187), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [145218] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8217), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8219), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [145249] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8223), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8221), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145280] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8225), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8227), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [145311] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8229), 1, - sym_file_descriptor, - ACTIONS(7930), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(3032), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7934), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7928), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145348] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3020), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8195), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(8231), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(8233), 12, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [145383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8191), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8193), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145414] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8209), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8211), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145445] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8207), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8205), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8237), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8235), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145507] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8239), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8241), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [145538] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3024), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8195), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(8243), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(8245), 12, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [145573] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8139), 1, - anon_sym_LF, - ACTIONS(8161), 1, - sym_file_descriptor, - STATE(3086), 1, - sym_file_redirect, - ACTIONS(7842), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8137), 12, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145610] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8143), 1, - anon_sym_LF, - ACTIONS(8161), 1, - sym_file_descriptor, - STATE(3031), 1, - sym_file_redirect, - ACTIONS(7842), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8141), 12, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8213), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8215), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145678] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8249), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8247), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145709] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8135), 1, - anon_sym_LF, - ACTIONS(8161), 1, - sym_file_descriptor, - STATE(3064), 1, - sym_file_redirect, - ACTIONS(7842), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8133), 12, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8251), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8253), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [145777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7877), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7875), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8257), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8255), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8259), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8261), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [145870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8265), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8263), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145901] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(8267), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1246), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145938] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(8269), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1252), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [145975] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8265), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8263), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8271), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8273), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146037] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8195), 1, - aux_sym_concatenation_token1, - ACTIONS(8275), 1, - sym__concat, - STATE(3093), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1248), 12, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [146074] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8237), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8235), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8279), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8277), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [146136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8283), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8281), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [146167] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8195), 1, - aux_sym_concatenation_token1, - ACTIONS(8285), 1, - sym__concat, - STATE(3093), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 12, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [146204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8289), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8287), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [146235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8291), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8293), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4392), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4390), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8203), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8201), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146328] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8295), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8297), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146359] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3016), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7881), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7879), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [146396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8301), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8299), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [146427] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8306), 1, - sym_file_descriptor, - ACTIONS(8059), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(3032), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8303), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8054), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [146464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4392), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4390), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146495] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8059), 1, - anon_sym_LF, - ACTIONS(8312), 1, - sym_file_descriptor, - STATE(3034), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8309), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8054), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [146532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8279), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8277), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8289), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8287), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8207), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8205), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8315), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8317), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8321), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8319), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [146687] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8323), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8325), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8225), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8227), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8329), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8327), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [146780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7904), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7902), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8333), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8331), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [146842] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8225), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8227), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [146873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8225), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8227), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [146904] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8339), 1, - anon_sym_SLASH, - ACTIONS(8343), 1, - anon_sym_LBRACK, - ACTIONS(8345), 1, - anon_sym_COLON, - ACTIONS(8353), 1, - anon_sym_AT, - ACTIONS(8335), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(8341), 2, - anon_sym_PERCENT, - anon_sym_POUND, - ACTIONS(8347), 2, - anon_sym_POUND_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(8351), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(8349), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(8337), 8, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_COLON_EQ, - anon_sym_COLON_DASH, - anon_sym_COLON_PLUS, - anon_sym_COLON_QMARK, - [146951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8355), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8357), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [146982] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7930), 1, - anon_sym_LF, - ACTIONS(8359), 1, - sym_file_descriptor, - STATE(3034), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7924), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7928), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147019] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8361), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8363), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [147050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8257), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8255), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [147081] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8321), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8319), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [147112] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7877), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7875), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [147143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8217), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8219), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8259), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8261), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8365), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8367), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [147236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8239), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8241), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147267] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8333), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8331), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [147298] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3017), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7877), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7875), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147335] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3016), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7887), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7885), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8251), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8253), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8323), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8325), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147434] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8207), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8205), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [147465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8197), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8199), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8371), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8369), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147527] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8375), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8373), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4392), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4390), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8271), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8273), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147620] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7904), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7902), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8249), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8247), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [147682] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8301), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8299), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [147713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4392), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4390), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8223), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8221), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [147775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8183), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8185), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8315), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8317), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8355), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8357), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [147868] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1357), 1, - sym__brace_start, - ACTIONS(8377), 1, - sym__special_character, - STATE(3077), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [147903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8380), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8382), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [147934] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8329), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8327), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [147965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8384), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8386), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [147996] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8361), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8363), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [148027] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8375), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8373), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [148058] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7930), 1, - anon_sym_LF, - ACTIONS(8388), 1, - sym_file_descriptor, - STATE(3091), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7966), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7928), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [148095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8365), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8367), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [148126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8283), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8281), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [148157] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8384), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8386), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [148188] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8291), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8293), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [148219] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8371), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8369), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [148250] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8380), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8382), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [148281] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3991), 1, - sym__brace_start, - ACTIONS(8390), 1, - sym__special_character, - STATE(3077), 1, - aux_sym__literal_repeat1, - ACTIONS(3989), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [148316] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8059), 1, - anon_sym_LF, - ACTIONS(8395), 1, - sym_file_descriptor, - STATE(3091), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8392), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8054), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [148353] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8295), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(8297), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [148384] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3093), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8398), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 12, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148419] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(8401), 1, - sym__concat, - STATE(2866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LF, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [148455] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148485] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8403), 1, - aux_sym_concatenation_token1, - ACTIONS(8405), 1, - sym__concat, - STATE(3114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1248), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148521] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3096), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8403), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1244), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148555] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3096), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8403), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3989), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3991), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148589] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8059), 1, - anon_sym_LF, - ACTIONS(8410), 1, - sym_file_descriptor, - STATE(3099), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8407), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8054), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [148625] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1296), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148655] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7930), 1, - anon_sym_LF, - ACTIONS(8413), 1, - sym_file_descriptor, - STATE(3099), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8075), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7928), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [148691] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3103), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8403), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3985), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3987), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148725] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8403), 1, - aux_sym_concatenation_token1, - ACTIONS(8415), 1, - sym__concat, - STATE(3114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148761] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 1, - sym__brace_start, - ACTIONS(1242), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [148821] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(8165), 1, - anon_sym_LPAREN, - ACTIONS(8169), 1, - anon_sym_DQUOTE, - ACTIONS(8171), 1, - aux_sym_number_token1, - ACTIONS(8173), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8175), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8177), 1, - anon_sym_BQUOTE, - ACTIONS(8179), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8417), 1, - aux_sym__c_word_token1, - ACTIONS(8163), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2244), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [148871] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1324), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148901] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_LPAREN, - ACTIONS(8108), 1, - anon_sym_DOLLAR, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, - aux_sym_number_token1, - ACTIONS(8114), 1, - aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, - anon_sym_BQUOTE, - ACTIONS(8122), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8419), 1, - aux_sym__c_word_token1, - ACTIONS(8102), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2340), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [148951] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [148981] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8143), 1, - anon_sym_LF, - ACTIONS(8388), 1, - sym_file_descriptor, - STATE(3071), 1, - sym_file_redirect, - ACTIONS(7966), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8141), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [149017] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8135), 1, - anon_sym_LF, - ACTIONS(8388), 1, - sym_file_descriptor, - STATE(2988), 1, - sym_file_redirect, - ACTIONS(7966), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8133), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [149053] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149083] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149113] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8421), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149147] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1332), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149177] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(7983), 1, - sym__concat, - STATE(3120), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1242), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LF, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [149213] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149243] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149273] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8139), 1, - anon_sym_LF, - ACTIONS(8388), 1, - sym_file_descriptor, - STATE(3080), 1, - sym_file_redirect, - ACTIONS(7966), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8137), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [149309] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(8424), 1, - sym__concat, - STATE(2866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LF, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [149345] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149375] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1320), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149405] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8229), 1, - sym_file_descriptor, - STATE(3080), 1, - sym_file_redirect, - ACTIONS(8139), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7934), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8137), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [149441] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8229), 1, - sym_file_descriptor, - STATE(3071), 1, - sym_file_redirect, - ACTIONS(8143), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7934), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8141), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [149477] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149507] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6828), 1, - anon_sym_DOLLAR, - ACTIONS(6834), 1, - aux_sym_number_token2, - ACTIONS(8165), 1, - anon_sym_LPAREN, - ACTIONS(8169), 1, - anon_sym_DQUOTE, - ACTIONS(8171), 1, - aux_sym_number_token1, - ACTIONS(8173), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8175), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8177), 1, - anon_sym_BQUOTE, - ACTIONS(8179), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8426), 1, - aux_sym__c_word_token1, - ACTIONS(8163), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2260), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [149557] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8428), 1, - aux_sym__c_word_token1, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2301), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [149607] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7942), 1, - anon_sym_LPAREN, - ACTIONS(7946), 1, - anon_sym_DOLLAR, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - aux_sym_number_token1, - ACTIONS(7952), 1, - aux_sym_number_token2, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7958), 1, - anon_sym_BQUOTE, - ACTIONS(7960), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8430), 1, - aux_sym__c_word_token1, - ACTIONS(7940), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2319), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [149657] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8229), 1, - sym_file_descriptor, - STATE(2988), 1, - sym_file_redirect, - ACTIONS(8135), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(7934), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8133), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [149693] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149723] = 13, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8104), 1, - anon_sym_LPAREN, - ACTIONS(8108), 1, - anon_sym_DOLLAR, - ACTIONS(8110), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, - aux_sym_number_token1, - ACTIONS(8114), 1, - aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, - anon_sym_BQUOTE, - ACTIONS(8122), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8432), 1, - aux_sym__c_word_token1, - ACTIONS(8102), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2385), 10, - sym__c_expression_not_assignment, - sym__c_unary_expression, - sym__c_binary_expression, - sym__c_postfix_expression, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [149773] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149803] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149833] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8135), 1, - anon_sym_LF, - ACTIONS(8359), 1, - sym_file_descriptor, - STATE(2988), 1, - sym_file_redirect, - ACTIONS(7924), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8133), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [149869] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8143), 1, - anon_sym_LF, - ACTIONS(8359), 1, - sym_file_descriptor, - STATE(3071), 1, - sym_file_redirect, - ACTIONS(7924), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8141), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [149905] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(3234), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1242), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [149941] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [149971] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3991), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(7983), 1, - sym__concat, - STATE(3120), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3989), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LF, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [150007] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3987), 1, - sym__brace_start, - ACTIONS(7981), 1, - aux_sym_concatenation_token1, - ACTIONS(7983), 1, - sym__concat, - STATE(3094), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3985), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LF, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [150043] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150073] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150103] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 8, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 14, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150133] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8139), 1, - anon_sym_LF, - ACTIONS(8359), 1, - sym_file_descriptor, - STATE(3080), 1, - sym_file_redirect, - ACTIONS(7924), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8137), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [150169] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8448), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8450), 1, - sym_test_operator, - ACTIONS(8452), 1, - sym_variable_name, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1909), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150220] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8454), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8456), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1837), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150271] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8458), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8460), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(2067), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150322] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8462), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8464), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1866), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150373] = 10, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7794), 1, - anon_sym_PIPE, - ACTIONS(8466), 1, - anon_sym_LT_LT, - ACTIONS(8475), 1, - anon_sym_LT_LT_DASH, - ACTIONS(8478), 1, - anon_sym_LT_LT_LT, - ACTIONS(8481), 1, - sym_file_descriptor, - ACTIONS(8472), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7802), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - STATE(3148), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8469), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [150416] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8488), 1, - anon_sym_esac, - ACTIONS(8484), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8486), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150447] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150476] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(3236), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3839), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3837), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [150511] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8490), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8492), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1751), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150562] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1296), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150591] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8494), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8496), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1924), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150642] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8502), 1, - anon_sym_esac, - ACTIONS(8498), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8500), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150673] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8504), 1, - anon_sym_LPAREN, - ACTIONS(8506), 1, - anon_sym_BANG, - ACTIONS(8508), 1, - aux_sym_unary_expression_token1, - ACTIONS(8510), 1, - anon_sym_DOLLAR, - ACTIONS(8512), 1, - aux_sym_number_token1, - ACTIONS(8514), 1, - aux_sym_number_token2, - ACTIONS(8516), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8518), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8520), 1, - sym_test_operator, - ACTIONS(8522), 1, - sym_variable_name, - STATE(2036), 1, - sym__arithmetic_ternary_expression, - STATE(2145), 1, - sym__arithmetic_binary_expression, - STATE(2104), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150724] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8135), 1, - anon_sym_LF, - ACTIONS(8413), 1, - sym_file_descriptor, - STATE(2988), 1, - sym_file_redirect, - ACTIONS(8075), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8133), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [150759] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8528), 1, - anon_sym_esac, - ACTIONS(8524), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8526), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150790] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8530), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8532), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1838), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150841] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8528), 1, - anon_sym_esac, - ACTIONS(8524), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8526), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150872] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [150901] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8143), 1, - anon_sym_LF, - ACTIONS(8413), 1, - sym_file_descriptor, - STATE(3071), 1, - sym_file_redirect, - ACTIONS(8075), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8141), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [150936] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8534), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8536), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1846), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [150987] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8538), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8540), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1835), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151038] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8542), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8544), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1945), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151089] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8546), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8548), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1850), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151140] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1300), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151169] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8554), 1, - anon_sym_esac, - ACTIONS(8550), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8552), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151200] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8556), 1, - sym_variable_name, - STATE(4367), 1, - sym_subscript, - ACTIONS(7822), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(3262), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7820), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [151235] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1304), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151264] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1312), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151293] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8558), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8560), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1762), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151344] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8562), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8564), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1887), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151395] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151424] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8570), 1, - anon_sym_esac, - ACTIONS(8566), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8568), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151455] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8572), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8574), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1768), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151506] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8502), 1, - anon_sym_esac, - ACTIONS(8498), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8500), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151537] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1340), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151566] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8139), 1, - anon_sym_LF, - ACTIONS(8413), 1, - sym_file_descriptor, - STATE(3080), 1, - sym_file_redirect, - ACTIONS(8075), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8137), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [151601] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1316), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151630] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8576), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8578), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1874), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151681] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8580), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8582), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1879), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151732] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151761] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8584), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8586), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1755), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151812] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8588), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8590), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1760), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151863] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(7850), 1, - sym__concat, - STATE(3234), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3843), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(3841), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [151898] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8592), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8594), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1896), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [151949] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8600), 1, - anon_sym_esac, - ACTIONS(8596), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8598), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [151980] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8606), 1, - anon_sym_esac, - ACTIONS(8602), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8604), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152011] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8554), 1, - anon_sym_esac, - ACTIONS(8550), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8552), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152042] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8608), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8610), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1897), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152093] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8612), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8614), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1825), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152144] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8618), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1904), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152195] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8620), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8622), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1743), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152246] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8628), 1, - anon_sym_esac, - ACTIONS(8624), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8626), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152277] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8630), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8632), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1905), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152328] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8634), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8636), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1869), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152379] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8638), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8640), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1750), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152430] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8646), 1, - anon_sym_esac, - ACTIONS(8642), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8644), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152461] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8648), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8650), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1829), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152512] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8652), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8654), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1872), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152563] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8600), 1, - anon_sym_esac, - ACTIONS(8596), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8598), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152594] = 12, - ACTIONS(63), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_RBRACK, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_PIPE_AMP, - ACTIONS(4449), 1, - anon_sym_LT_LT, - ACTIONS(4451), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4453), 1, - anon_sym_LT_LT_LT, - ACTIONS(8660), 1, - sym_file_descriptor, - ACTIONS(4447), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8658), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(3215), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8656), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [152641] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8666), 1, - anon_sym_esac, - ACTIONS(8662), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8664), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152672] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8668), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8670), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1911), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152723] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152752] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8672), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8674), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1736), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152803] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8676), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8678), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1759), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [152854] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1328), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152883] = 12, - ACTIONS(63), 1, - sym_comment, - ACTIONS(127), 1, - anon_sym_RBRACK, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_PIPE_AMP, - ACTIONS(4449), 1, - anon_sym_LT_LT, - ACTIONS(4451), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4453), 1, - anon_sym_LT_LT_LT, - ACTIONS(8660), 1, - sym_file_descriptor, - ACTIONS(4447), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8658), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(3215), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8656), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [152930] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8684), 1, - anon_sym_esac, - ACTIONS(8680), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8682), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152961] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [152990] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8686), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8688), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1737), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153041] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8690), 1, - sym__special_character, - STATE(3214), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1357), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153074] = 10, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4449), 1, - anon_sym_LT_LT, - ACTIONS(4451), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4453), 1, - anon_sym_LT_LT_LT, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(8660), 1, - sym_file_descriptor, - ACTIONS(8658), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7814), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - STATE(3148), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8656), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [153117] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8693), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8695), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1927), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153168] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8697), 1, - sym__special_character, - STATE(3214), 1, - aux_sym__literal_repeat1, - ACTIONS(8231), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8233), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153201] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8703), 1, - anon_sym_esac, - ACTIONS(8699), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8701), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153232] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8705), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8707), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1715), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153283] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8504), 1, - anon_sym_LPAREN, - ACTIONS(8506), 1, - anon_sym_BANG, - ACTIONS(8508), 1, - aux_sym_unary_expression_token1, - ACTIONS(8510), 1, - anon_sym_DOLLAR, - ACTIONS(8512), 1, - aux_sym_number_token1, - ACTIONS(8514), 1, - aux_sym_number_token2, - ACTIONS(8516), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8522), 1, - sym_variable_name, - ACTIONS(8709), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8711), 1, - sym_test_operator, - STATE(2036), 1, - sym__arithmetic_ternary_expression, - STATE(2145), 1, - sym__arithmetic_binary_expression, - STATE(2116), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153334] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4308), 1, - anon_sym_LT_LT_LT, - ACTIONS(7814), 1, - anon_sym_LF, - ACTIONS(8715), 1, - sym_file_descriptor, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(7812), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(3226), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8713), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [153373] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1344), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153402] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8717), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8719), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1730), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153453] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4308), 1, - anon_sym_LT_LT_LT, - ACTIONS(8715), 1, - sym_file_descriptor, - ACTIONS(8721), 1, - anon_sym_LF, - ACTIONS(3430), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4272), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4304), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(3221), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8713), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [153494] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(3221), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [153525] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7802), 1, - anon_sym_LF, - ACTIONS(8726), 1, - anon_sym_LT_LT_LT, - ACTIONS(8729), 1, - sym_file_descriptor, - ACTIONS(7912), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(7794), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(3226), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8723), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [153564] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1348), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153593] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8732), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8734), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1732), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153644] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153673] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1320), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153702] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1336), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153731] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8736), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8738), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1723), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153782] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3436), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1242), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [153817] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(8740), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1246), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [153852] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1332), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153881] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7848), 1, - aux_sym_concatenation_token1, - ACTIONS(8742), 1, - sym__concat, - STATE(2712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1252), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [153916] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8744), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8746), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1820), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [153967] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8666), 1, - anon_sym_esac, - ACTIONS(8662), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8664), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [153998] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3465), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8748), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1244), 13, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [154031] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8750), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8752), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1726), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154082] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8758), 1, - anon_sym_esac, - ACTIONS(8754), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8756), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154113] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8760), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8762), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(2041), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154164] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8764), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8766), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1718), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154215] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8768), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8770), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1921), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154266] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1324), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154295] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8772), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8774), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1863), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154346] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8776), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8778), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1719), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154397] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8504), 1, - anon_sym_LPAREN, - ACTIONS(8506), 1, - anon_sym_BANG, - ACTIONS(8508), 1, - aux_sym_unary_expression_token1, - ACTIONS(8510), 1, - anon_sym_DOLLAR, - ACTIONS(8512), 1, - aux_sym_number_token1, - ACTIONS(8514), 1, - aux_sym_number_token2, - ACTIONS(8516), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8522), 1, - sym_variable_name, - ACTIONS(8780), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8782), 1, - sym_test_operator, - STATE(2036), 1, - sym__arithmetic_ternary_expression, - STATE(2145), 1, - sym__arithmetic_binary_expression, - STATE(2110), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154448] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8784), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8786), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1777), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154499] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8792), 1, - anon_sym_esac, - ACTIONS(8788), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8790), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154530] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8684), 1, - anon_sym_esac, - ACTIONS(8680), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8682), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154561] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8794), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8796), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1739), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154612] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8802), 1, - anon_sym_esac, - ACTIONS(8798), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8800), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154643] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8606), 1, - anon_sym_esac, - ACTIONS(8602), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8604), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154674] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8504), 1, - anon_sym_LPAREN, - ACTIONS(8506), 1, - anon_sym_BANG, - ACTIONS(8508), 1, - aux_sym_unary_expression_token1, - ACTIONS(8510), 1, - anon_sym_DOLLAR, - ACTIONS(8512), 1, - aux_sym_number_token1, - ACTIONS(8514), 1, - aux_sym_number_token2, - ACTIONS(8516), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8522), 1, - sym_variable_name, - ACTIONS(8804), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8806), 1, - sym_test_operator, - STATE(2036), 1, - sym__arithmetic_ternary_expression, - STATE(2145), 1, - sym__arithmetic_binary_expression, - STATE(2099), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154725] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8646), 1, - anon_sym_esac, - ACTIONS(8642), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8644), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [154756] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8504), 1, - anon_sym_LPAREN, - ACTIONS(8506), 1, - anon_sym_BANG, - ACTIONS(8508), 1, - aux_sym_unary_expression_token1, - ACTIONS(8510), 1, - anon_sym_DOLLAR, - ACTIONS(8512), 1, - aux_sym_number_token1, - ACTIONS(8514), 1, - aux_sym_number_token2, - ACTIONS(8516), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8522), 1, - sym_variable_name, - ACTIONS(8808), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8810), 1, - sym_test_operator, - STATE(2036), 1, - sym__arithmetic_ternary_expression, - STATE(2145), 1, - sym__arithmetic_binary_expression, - STATE(2066), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154807] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8812), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8814), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1781), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154858] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8816), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8818), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1802), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154909] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3334), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8820), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 6, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - sym__special_character, - ACTIONS(1244), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [154942] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8822), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8824), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1818), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [154993] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8826), 1, - sym_variable_name, - STATE(4367), 1, - sym_subscript, - ACTIONS(7789), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(3262), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7787), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [155028] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8829), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8831), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1821), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155079] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8833), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8835), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1862), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155130] = 12, - ACTIONS(63), 1, - sym_comment, - ACTIONS(137), 1, - anon_sym_RBRACK, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_PIPE_AMP, - ACTIONS(4449), 1, - anon_sym_LT_LT, - ACTIONS(4451), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4453), 1, - anon_sym_LT_LT_LT, - ACTIONS(8660), 1, - sym_file_descriptor, - ACTIONS(4447), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8658), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(3215), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8656), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [155177] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8837), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8839), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1843), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155228] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8845), 1, - anon_sym_esac, - ACTIONS(8841), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8843), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155259] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8847), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8849), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1716), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155310] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3477), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4272), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(3221), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3312), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [155343] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8851), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8853), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1861), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155394] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8855), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8857), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1873), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155445] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8859), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8861), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1886), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155496] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8434), 1, - anon_sym_LPAREN, - ACTIONS(8436), 1, - anon_sym_BANG, - ACTIONS(8438), 1, - aux_sym_unary_expression_token1, - ACTIONS(8440), 1, - anon_sym_DOLLAR, - ACTIONS(8442), 1, - aux_sym_number_token1, - ACTIONS(8444), 1, - aux_sym_number_token2, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8452), 1, - sym_variable_name, - ACTIONS(8863), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8865), 1, - sym_test_operator, - STATE(1794), 1, - sym__arithmetic_ternary_expression, - STATE(1848), 1, - sym__arithmetic_binary_expression, - STATE(1775), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155547] = 14, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8504), 1, - anon_sym_LPAREN, - ACTIONS(8506), 1, - anon_sym_BANG, - ACTIONS(8508), 1, - aux_sym_unary_expression_token1, - ACTIONS(8510), 1, - anon_sym_DOLLAR, - ACTIONS(8512), 1, - aux_sym_number_token1, - ACTIONS(8514), 1, - aux_sym_number_token2, - ACTIONS(8516), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8522), 1, - sym_variable_name, - ACTIONS(8867), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8869), 1, - sym_test_operator, - STATE(2036), 1, - sym__arithmetic_ternary_expression, - STATE(2145), 1, - sym__arithmetic_binary_expression, - STATE(2137), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_unary_expression, - sym__arithmetic_postfix_expression, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [155598] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8877), 1, - anon_sym_RBRACE3, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - STATE(3419), 1, - aux_sym_expansion_repeat1, - STATE(4633), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8871), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [155646] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8889), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8891), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155674] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8895), 1, - anon_sym_RBRACE3, - STATE(3278), 1, - aux_sym_expansion_repeat1, - STATE(4986), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8893), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [155722] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8899), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4927), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [155770] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8903), 1, - anon_sym_RBRACE3, - STATE(3308), 1, - aux_sym_expansion_repeat1, - STATE(4706), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8901), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [155818] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8907), 1, - anon_sym_RBRACE3, - STATE(3284), 1, - aux_sym_expansion_repeat1, - STATE(4919), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8905), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [155866] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8911), 1, - anon_sym_RBRACE3, - STATE(3293), 1, - aux_sym_expansion_repeat1, - STATE(4779), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8909), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [155914] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8524), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8526), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [155942] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8913), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4675), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [155990] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8915), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4909), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156038] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8917), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8919), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [156066] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3286), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8921), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1263), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [156098] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8754), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8756), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [156126] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8926), 1, - anon_sym_RBRACE3, - STATE(3283), 1, - aux_sym_expansion_repeat1, - STATE(4906), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8924), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156174] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8928), 1, - sym_variable_name, - STATE(4379), 1, - sym_subscript, - STATE(3406), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7820), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7822), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [156208] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8917), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8919), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [156236] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8932), 1, - anon_sym_RBRACE3, - STATE(3298), 1, - aux_sym_expansion_repeat1, - STATE(4531), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8930), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156284] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8934), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8936), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [156312] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8938), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4693), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156360] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3433), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7904), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7902), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [156394] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8942), 1, - anon_sym_RBRACE3, - STATE(3307), 1, - aux_sym_expansion_repeat1, - STATE(4503), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8940), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156442] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8944), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4813), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156490] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8948), 1, - anon_sym_RBRACE3, - STATE(3301), 1, - aux_sym_expansion_repeat1, - STATE(4900), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8946), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156538] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8950), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4563), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156586] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8642), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8644), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [156614] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8484), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8486), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [156642] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8952), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4894), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156690] = 11, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_PIPE_AMP, - ACTIONS(4449), 1, - anon_sym_LT_LT, - ACTIONS(4451), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4453), 1, - anon_sym_LT_LT_LT, - ACTIONS(8660), 1, - sym_file_descriptor, - ACTIONS(4447), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8658), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(3215), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(8656), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [156734] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8954), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8956), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [156762] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8958), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8960), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [156790] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8964), 1, - anon_sym_RBRACE3, - STATE(3296), 1, - aux_sym_expansion_repeat1, - STATE(4878), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8962), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156838] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8966), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8968), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [156866] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8970), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4464), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156914] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8972), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4556), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [156962] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8976), 1, - anon_sym_RBRACE3, - STATE(3312), 1, - aux_sym_expansion_repeat1, - STATE(4888), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8974), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157010] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8934), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8936), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [157038] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8980), 1, - anon_sym_RBRACE3, - STATE(3353), 1, - aux_sym_expansion_repeat1, - STATE(4657), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8978), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157086] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8982), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4881), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157134] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8984), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8986), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [157162] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8988), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8990), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [157190] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8992), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4916), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157238] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8642), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8644), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [157266] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(8996), 1, - anon_sym_RBRACE3, - STATE(3324), 1, - aux_sym_expansion_repeat1, - STATE(4478), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8994), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157314] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8798), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8800), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [157342] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8624), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8626), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [157370] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8550), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8552), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [157398] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9000), 1, - anon_sym_RBRACE3, - STATE(3315), 1, - aux_sym_expansion_repeat1, - STATE(4914), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8998), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157446] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9002), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4891), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157494] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9004), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4475), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157542] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9006), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4424), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157590] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9010), 1, - anon_sym_RBRACE3, - STATE(3323), 1, - aux_sym_expansion_repeat1, - STATE(4458), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9008), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157638] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9012), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4454), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157686] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9016), 1, - anon_sym_RBRACE3, - STATE(3326), 1, - aux_sym_expansion_repeat1, - STATE(4440), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9014), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157734] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8934), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8936), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [157762] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9018), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4406), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157810] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3436), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7881), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7879), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157844] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9022), 1, - anon_sym_RBRACE3, - STATE(3329), 1, - aux_sym_expansion_repeat1, - STATE(4417), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9020), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157892] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8820), 1, - aux_sym_concatenation_token1, - ACTIONS(9024), 1, - sym__concat, - STATE(3286), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1254), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [157926] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9026), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4418), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [157974] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8820), 1, - aux_sym_concatenation_token1, - ACTIONS(9028), 1, - sym__concat, - STATE(3286), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1248), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [158008] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9032), 1, - anon_sym_RBRACE3, - STATE(3333), 1, - aux_sym_expansion_repeat1, - STATE(4430), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9030), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158056] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8988), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8990), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [158084] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9034), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9036), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [158112] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9040), 1, - anon_sym_RBRACE3, - STATE(3340), 1, - aux_sym_expansion_repeat1, - STATE(4875), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9038), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158160] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9044), 1, - anon_sym_RBRACE3, - STATE(3322), 1, - aux_sym_expansion_repeat1, - STATE(4877), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9042), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158208] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9046), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4868), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158256] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9048), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4432), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158304] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9052), 1, - anon_sym_RBRACE3, - STATE(3341), 1, - aux_sym_expansion_repeat1, - STATE(4441), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9050), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158352] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9056), 1, - anon_sym_RBRACE3, - STATE(3350), 1, - aux_sym_expansion_repeat1, - STATE(4452), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9054), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158400] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9058), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9060), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [158428] = 10, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(9062), 1, - anon_sym_LT_LT, - ACTIONS(9068), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9070), 1, - anon_sym_LT_LT_LT, - ACTIONS(9072), 1, - sym_file_descriptor, - ACTIONS(7814), 3, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9066), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(3451), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9064), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [158470] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8550), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8552), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [158498] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9074), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4445), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158546] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9078), 1, - anon_sym_RBRACE3, - STATE(3347), 1, - aux_sym_expansion_repeat1, - STATE(4451), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9076), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158594] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9082), 1, - anon_sym_RBRACE3, - STATE(3356), 1, - aux_sym_expansion_repeat1, - STATE(4862), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9080), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158642] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9084), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4565), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158690] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9086), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4455), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158738] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9088), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4904), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158786] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9090), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4635), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158834] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9094), 1, - anon_sym_RBRACE3, - STATE(3351), 1, - aux_sym_expansion_repeat1, - STATE(4463), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9092), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158882] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9096), 1, - sym__special_character, - STATE(3432), 1, - aux_sym__literal_repeat1, - ACTIONS(3989), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3991), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [158914] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9098), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4855), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [158962] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9100), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4469), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159010] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9104), 1, - anon_sym_RBRACE3, - STATE(3357), 1, - aux_sym_expansion_repeat1, - STATE(4474), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9102), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159058] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9106), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4482), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159106] = 4, - ACTIONS(63), 1, - sym_comment, - STATE(3345), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3304), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3306), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [159136] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9110), 1, - anon_sym_RBRACE3, - STATE(3359), 1, - aux_sym_expansion_repeat1, - STATE(4722), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9108), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159184] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8841), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8843), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [159212] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8988), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8990), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [159240] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3495), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9112), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1242), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1244), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [159272] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9034), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9036), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [159300] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9116), 1, - anon_sym_RBRACE3, - STATE(3352), 1, - aux_sym_expansion_repeat1, - STATE(4907), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9114), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159348] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9118), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4504), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159396] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_PIPE_AMP, - ACTIONS(3312), 4, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(3345), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3477), 10, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [159430] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9122), 1, - anon_sym_RBRACE3, - STATE(3376), 1, - aux_sym_expansion_repeat1, - STATE(4526), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9120), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159478] = 11, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3430), 1, - anon_sym_LT_LT, - ACTIONS(3760), 1, - anon_sym_PIPE, - ACTIONS(8079), 1, - sym_file_descriptor, - ACTIONS(9128), 1, - anon_sym_PIPE_AMP, - ACTIONS(9130), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9132), 1, - anon_sym_LT_LT_LT, - ACTIONS(9124), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8075), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2953), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9126), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [159522] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3433), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7877), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7875), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [159556] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9136), 1, - anon_sym_RBRACE3, - STATE(3367), 1, - aux_sym_expansion_repeat1, - STATE(4512), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9134), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159604] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9138), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9140), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [159632] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8988), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8990), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [159660] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9142), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4517), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159708] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9144), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4548), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159756] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9148), 1, - anon_sym_RBRACE3, - STATE(3390), 1, - aux_sym_expansion_repeat1, - STATE(4845), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9146), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159804] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9152), 1, - anon_sym_RBRACE3, - STATE(3375), 1, - aux_sym_expansion_repeat1, - STATE(4499), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9150), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159852] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9154), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9156), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [159880] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9158), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4861), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159928] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9160), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4537), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [159976] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3332), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8820), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7875), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7877), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [160008] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3334), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8820), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7879), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7881), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [160040] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9164), 1, - anon_sym_RBRACE3, - STATE(3381), 1, - aux_sym_expansion_repeat1, - STATE(4547), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9162), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160088] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9166), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9168), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160116] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(7910), 1, - sym__concat, - STATE(3436), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7887), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(7885), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [160150] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9138), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9140), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160178] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9154), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9156), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160206] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9170), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4790), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160254] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9172), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4835), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160302] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8984), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8986), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160330] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9174), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4554), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160378] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9178), 1, - anon_sym_RBRACE3, - STATE(3389), 1, - aux_sym_expansion_repeat1, - STATE(4730), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9176), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160426] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9182), 1, - anon_sym_RBRACE3, - STATE(3392), 1, - aux_sym_expansion_repeat1, - STATE(4562), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9180), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160474] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9186), 1, - anon_sym_RBRACE3, - STATE(3402), 1, - aux_sym_expansion_repeat1, - STATE(4577), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9184), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160522] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8984), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8986), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160550] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9188), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9190), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160578] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8602), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8604), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160606] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8934), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8936), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160634] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9154), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9156), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160662] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9192), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4569), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160710] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9194), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4611), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160758] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9198), 1, - anon_sym_RBRACE3, - STATE(3414), 1, - aux_sym_expansion_repeat1, - STATE(4832), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9196), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160806] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8788), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8790), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160834] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9202), 1, - anon_sym_RBRACE3, - STATE(3401), 1, - aux_sym_expansion_repeat1, - STATE(4587), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9200), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [160882] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9204), 1, - sym_variable_name, - STATE(4379), 1, - sym_subscript, - STATE(3406), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(7787), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7789), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [160916] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8524), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8526), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160944] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9154), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9156), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [160972] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9207), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4599), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161020] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4370), 7, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4372), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [161048] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9211), 1, - anon_sym_RBRACE3, - STATE(3409), 1, - aux_sym_expansion_repeat1, - STATE(4610), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9209), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161096] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3412), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9213), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1263), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [161128] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9218), 1, - anon_sym_RBRACE3, - STATE(3380), 1, - aux_sym_expansion_repeat1, - STATE(4841), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9216), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161176] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9220), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4825), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161224] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8566), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8568), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [161252] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3332), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8820), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7902), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7904), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [161284] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9138), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9140), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [161312] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3334), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8820), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7885), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7887), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [161344] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9222), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4615), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161392] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4374), 7, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4376), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [161420] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9226), 1, - anon_sym_RBRACE3, - STATE(3427), 1, - aux_sym_expansion_repeat1, - STATE(4636), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9224), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161468] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9230), 1, - anon_sym_RBRACE3, - STATE(3425), 1, - aux_sym_expansion_repeat1, - STATE(4821), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9228), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161516] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3465), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8748), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3841), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3843), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [161548] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9232), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4426), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161596] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9234), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4815), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161644] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8889), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8891), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [161672] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9236), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4679), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161720] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9238), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4641), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161768] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8662), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8664), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [161796] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3443), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8748), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3837), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3839), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [161828] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9242), 1, - anon_sym_RBRACE3, - STATE(3428), 1, - aux_sym_expansion_repeat1, - STATE(4661), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9240), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161876] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9244), 1, - sym__special_character, - STATE(3432), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1357), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [161908] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(9247), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1252), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [161942] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9251), 1, - anon_sym_RBRACE3, - STATE(3439), 1, - aux_sym_expansion_repeat1, - STATE(4809), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9249), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [161990] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9253), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4671), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162038] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7908), 1, - aux_sym_concatenation_token1, - ACTIONS(9255), 1, - sym__concat, - STATE(2726), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1246), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [162072] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9034), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9036), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [162100] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9259), 1, - anon_sym_RBRACE3, - STATE(3435), 1, - aux_sym_expansion_repeat1, - STATE(4681), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9257), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162148] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9261), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4802), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162196] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9265), 1, - anon_sym_RBRACE3, - STATE(3424), 1, - aux_sym_expansion_repeat1, - STATE(4488), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9263), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162244] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8699), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8701), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [162272] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8602), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8604), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [162300] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8748), 1, - aux_sym_concatenation_token1, - ACTIONS(9267), 1, - sym__concat, - STATE(3412), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1254), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [162334] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9269), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4820), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162382] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9271), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4685), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162430] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9275), 1, - anon_sym_RBRACE3, - STATE(3452), 1, - aux_sym_expansion_repeat1, - STATE(4699), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9273), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162478] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9034), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9036), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [162506] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9277), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9279), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [162534] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8984), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8986), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [162562] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9283), 1, - anon_sym_RBRACE3, - STATE(3445), 1, - aux_sym_expansion_repeat1, - STATE(4696), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9281), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162610] = 10, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7794), 1, - anon_sym_PIPE, - ACTIONS(9285), 1, - anon_sym_LT_LT, - ACTIONS(9294), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9297), 1, - anon_sym_LT_LT_LT, - ACTIONS(9300), 1, - sym_file_descriptor, - ACTIONS(7802), 3, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(9291), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(3451), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(9288), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [162652] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9303), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4739), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162700] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9307), 1, - anon_sym_RBRACE3, - STATE(3466), 1, - aux_sym_expansion_repeat1, - STATE(4797), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9305), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162748] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9309), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4712), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162796] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8889), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8891), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [162824] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9313), 1, - anon_sym_RBRACE3, - STATE(3454), 1, - aux_sym_expansion_repeat1, - STATE(4723), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9311), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162872] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8917), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8919), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [162900] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8498), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8500), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [162928] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9315), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4732), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [162976] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8498), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8500), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [163004] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8680), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8682), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [163032] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9319), 1, - anon_sym_RBRACE3, - STATE(3459), 1, - aux_sym_expansion_repeat1, - STATE(4741), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9317), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163080] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8889), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8891), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [163108] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8917), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8919), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [163136] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8748), 1, - aux_sym_concatenation_token1, - ACTIONS(9321), 1, - sym__concat, - STATE(3412), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1248), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [163170] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9323), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4792), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163218] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9327), 1, - anon_sym_RBRACE3, - STATE(3444), 1, - aux_sym_expansion_repeat1, - STATE(4798), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9325), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163266] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8596), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8598), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [163294] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9329), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4747), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163342] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9333), 1, - anon_sym_RBRACE3, - STATE(3476), 1, - aux_sym_expansion_repeat1, - STATE(4757), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9331), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163390] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 7, - anon_sym_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1244), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [163418] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9337), 1, - anon_sym_RBRACE3, - STATE(3477), 1, - aux_sym_expansion_repeat1, - STATE(4788), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9335), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163466] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9138), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9140), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [163494] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9341), 1, - anon_sym_RBRACE3, - STATE(3469), 1, - aux_sym_expansion_repeat1, - STATE(4756), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9339), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163542] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8680), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8682), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [163570] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9343), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4761), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163618] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9345), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4780), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163666] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8662), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8664), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [163694] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9347), 1, - anon_sym_RBRACE3, - STATE(3573), 1, - aux_sym_expansion_repeat1, - STATE(4762), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(8897), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163742] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8596), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(8598), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [163770] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8879), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8881), 1, - anon_sym_BQUOTE, - ACTIONS(8883), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8885), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8887), 1, - sym_variable_name, - ACTIONS(9351), 1, - anon_sym_RBRACE3, - STATE(3479), 1, - aux_sym_expansion_repeat1, - STATE(4774), 1, - sym__expansion_body, - STATE(605), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(8875), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(9349), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(8873), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT, - [163818] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9353), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(9355), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [163846] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1320), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [163873] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1332), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [163900] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9357), 1, - sym__special_character, - STATE(3502), 1, - aux_sym__literal_repeat1, - ACTIONS(7885), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7887), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [163931] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1300), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [163958] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7930), 1, - anon_sym_LF, - ACTIONS(9359), 1, - sym_file_descriptor, - STATE(3488), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7928), 7, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(8713), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [163991] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8059), 1, - anon_sym_LF, - ACTIONS(9364), 1, - sym_file_descriptor, - STATE(3488), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8054), 7, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(9361), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [164024] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1328), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164051] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9112), 1, - aux_sym_concatenation_token1, - ACTIONS(9367), 1, - sym__concat, - STATE(3510), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1254), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [164084] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1278), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164111] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3490), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9112), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7875), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7877), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [164142] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1316), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164169] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3495), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9112), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7879), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7881), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [164200] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9112), 1, - aux_sym_concatenation_token1, - ACTIONS(9369), 1, - sym__concat, - STATE(3510), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1248), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [164233] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1320), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164260] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9371), 1, - sym__special_character, - STATE(3497), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1357), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [164291] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1282), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164318] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3495), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9112), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7885), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7887), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [164349] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1296), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164376] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3490), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9112), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(7902), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7904), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [164407] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9374), 1, - sym__special_character, - STATE(3502), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1357), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [164438] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1244), 14, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [164465] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1312), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164492] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1263), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164519] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1270), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164546] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9377), 1, - sym_file_descriptor, - ACTIONS(7928), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - STATE(3533), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(8658), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(8656), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7930), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [164581] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1263), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164608] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1328), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164635] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3510), 1, - aux_sym_concatenation_repeat1, - ACTIONS(9379), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1258), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1263), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [164666] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9382), 1, - sym__special_character, - STATE(3497), 1, - aux_sym__literal_repeat1, - ACTIONS(3841), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3843), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [164697] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1282), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164724] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1316), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164751] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1304), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164778] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1274), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164805] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9357), 1, - sym__special_character, - STATE(3502), 1, - aux_sym__literal_repeat1, - ACTIONS(7879), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7881), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [164836] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1340), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164863] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1344), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164890] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1348), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164917] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1296), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164944] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1286), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164971] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1274), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [164998] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1324), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165025] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1336), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165052] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1300), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165079] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1312), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165106] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1270), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165133] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1270), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165160] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1270), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165187] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1344), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165214] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1324), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165241] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1348), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165268] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9390), 1, - sym_file_descriptor, - ACTIONS(8054), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - STATE(3533), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(9387), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9384), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(8059), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [165303] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1336), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165330] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1286), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165357] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1278), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165384] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1332), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165411] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1304), 14, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165438] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1340), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165465] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1284), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1286), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165491] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1326), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1328), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165517] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1314), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1316), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165543] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1344), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165569] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1280), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1282), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165595] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1302), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1304), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165621] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9393), 1, - sym__special_character, - STATE(3551), 1, - aux_sym__literal_repeat1, - ACTIONS(7885), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7887), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [165651] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9397), 1, - anon_sym_DQUOTE, - STATE(3980), 1, - sym_string, - ACTIONS(9399), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1215), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - ACTIONS(9395), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [165683] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1298), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1300), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165709] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1294), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1296), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165735] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1348), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165761] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9401), 1, - sym__special_character, - STATE(3551), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1357), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [165791] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1338), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1340), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165817] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 6, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - sym__special_character, - ACTIONS(1244), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [165843] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9397), 1, - anon_sym_DQUOTE, - STATE(3980), 1, - sym_string, - ACTIONS(9399), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1205), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_LF, - anon_sym_AMP, - ACTIONS(9395), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [165875] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1318), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1320), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165901] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1310), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1312), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165927] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1276), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1278), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [165953] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9410), 1, - sym_file_descriptor, - ACTIONS(8054), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - STATE(3558), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(9407), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(8059), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(9404), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [165987] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1244), 13, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [166013] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9393), 1, - sym__special_character, - STATE(3551), 1, - aux_sym__literal_repeat1, - ACTIONS(7879), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7881), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166043] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8135), 1, - anon_sym_LF, - ACTIONS(9359), 1, - sym_file_descriptor, - STATE(2988), 1, - sym_file_redirect, - ACTIONS(8133), 7, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(8713), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [166075] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1336), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [166101] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1270), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [166127] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1324), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [166153] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1258), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1263), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [166179] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8143), 1, - anon_sym_LF, - ACTIONS(9359), 1, - sym_file_descriptor, - STATE(3071), 1, - sym_file_redirect, - ACTIONS(8141), 7, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(8713), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [166211] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8139), 1, - anon_sym_LF, - ACTIONS(9359), 1, - sym_file_descriptor, - STATE(3080), 1, - sym_file_redirect, - ACTIONS(8137), 7, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(8713), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [166243] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9413), 1, - sym_file_descriptor, - ACTIONS(7928), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - STATE(3558), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(9066), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7930), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(9064), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [166277] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1270), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [166303] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1274), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [166329] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1332), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [166355] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3837), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3839), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166380] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3573), 1, - aux_sym_expansion_repeat1, - ACTIONS(9415), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(9420), 4, - anon_sym_DOLLAR, - aux_sym__simple_variable_name_token1, - anon_sym_0, - anon_sym__, - ACTIONS(9418), 9, - sym_variable_name, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [166409] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4370), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(4372), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166434] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8261), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8259), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166459] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9413), 1, - sym_file_descriptor, - STATE(3594), 1, - sym_file_redirect, - ACTIONS(8137), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(9066), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(8139), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(9064), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [166492] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8281), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8283), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166517] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4374), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(4376), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166542] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8287), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8289), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166567] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1244), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [166592] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7875), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7877), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166617] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9413), 1, - sym_file_descriptor, - STATE(3618), 1, - sym_file_redirect, - ACTIONS(8141), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(9066), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(8143), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(9064), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [166650] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8221), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8223), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166675] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8277), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8279), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166700] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8241), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8239), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166725] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9413), 1, - sym_file_descriptor, - STATE(3622), 1, - sym_file_redirect, - ACTIONS(8133), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(9066), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(8135), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(9064), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [166758] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7902), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7904), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166783] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8373), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8375), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166807] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8297), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8295), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166831] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8363), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8361), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166855] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4390), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(4392), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166879] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4390), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(4392), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166903] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8263), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8265), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166927] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8386), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8384), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166951] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8327), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8329), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166975] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8205), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8207), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [166999] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8277), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8279), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167023] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8281), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8283), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167047] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8287), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8289), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167071] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8221), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8223), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167095] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8261), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8259), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167119] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8241), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8239), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167143] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7902), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7904), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167167] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7875), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(7877), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167191] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8215), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8213), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167215] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8211), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8209), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167239] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8227), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8225), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167263] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8227), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8225), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167287] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8247), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8249), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167311] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8331), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8333), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167335] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8187), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8189), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167359] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8253), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8251), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167383] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8219), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8217), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167407] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8369), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8371), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167431] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8367), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8365), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167455] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8273), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8271), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167479] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8382), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8380), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167503] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8299), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8301), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167527] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8319), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8321), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167551] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8193), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8191), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167575] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8205), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8207), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167599] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8199), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8197), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167623] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8293), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8291), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167647] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8255), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8257), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167671] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8201), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8203), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167695] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8317), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8315), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167719] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8357), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8355), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167743] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8325), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8323), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167767] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8185), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8183), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167791] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8235), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(8237), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [167815] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - STATE(4132), 1, - sym_string, - ACTIONS(1215), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - ACTIONS(9424), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9422), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [167844] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - STATE(4132), 1, - sym_string, - ACTIONS(1205), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - ACTIONS(9424), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9422), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [167873] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9428), 1, - anon_sym_DQUOTE, - STATE(4123), 1, - sym_string, - ACTIONS(1205), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - ACTIONS(9430), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9426), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [167902] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9428), 1, - anon_sym_DQUOTE, - STATE(4123), 1, - sym_string, - ACTIONS(1215), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - ACTIONS(9430), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9426), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [167931] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9434), 1, - anon_sym_DOLLAR, - ACTIONS(9436), 1, - anon_sym_DQUOTE, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3726), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [167969] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9448), 1, - anon_sym_DOLLAR, - ACTIONS(9450), 1, - anon_sym_DQUOTE, - STATE(3735), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168007] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9452), 1, - anon_sym_DOLLAR, - ACTIONS(9454), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168045] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9456), 1, - anon_sym_DOLLAR, - ACTIONS(9458), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168083] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9460), 1, - anon_sym_DOLLAR, - ACTIONS(9462), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168121] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9464), 1, - anon_sym_DOLLAR, - ACTIONS(9466), 1, - anon_sym_DQUOTE, - STATE(3644), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168159] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9468), 1, - anon_sym_DOLLAR, - ACTIONS(9470), 1, - anon_sym_DQUOTE, - STATE(3638), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168197] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9472), 1, - anon_sym_DOLLAR, - ACTIONS(9474), 1, - anon_sym_DQUOTE, - STATE(3645), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168235] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9476), 1, - anon_sym_DOLLAR, - ACTIONS(9478), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168273] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9480), 1, - anon_sym_DOLLAR, - ACTIONS(9482), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168311] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9484), 1, - anon_sym_DOLLAR, - ACTIONS(9486), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168349] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9488), 1, - anon_sym_DOLLAR, - ACTIONS(9490), 1, - anon_sym_DQUOTE, - STATE(3643), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168387] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9492), 1, - anon_sym_DOLLAR, - ACTIONS(9494), 1, - anon_sym_DQUOTE, - STATE(3651), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168425] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9496), 1, - anon_sym_DOLLAR, - ACTIONS(9498), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168463] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9500), 1, - anon_sym_DOLLAR, - ACTIONS(9502), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168501] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9504), 1, - anon_sym_DOLLAR, - ACTIONS(9506), 1, - anon_sym_DQUOTE, - STATE(3649), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168539] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9508), 1, - anon_sym_DOLLAR, - ACTIONS(9510), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168577] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9512), 1, - anon_sym_DOLLAR, - ACTIONS(9514), 1, - anon_sym_DQUOTE, - STATE(3648), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168615] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9516), 1, - anon_sym_DOLLAR, - ACTIONS(9518), 1, - anon_sym_DQUOTE, - STATE(3670), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168653] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9520), 1, - anon_sym_DOLLAR, - ACTIONS(9522), 1, - anon_sym_DQUOTE, - STATE(3657), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168691] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9524), 1, - anon_sym_DOLLAR, - ACTIONS(9526), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168729] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9528), 1, - anon_sym_DOLLAR, - ACTIONS(9530), 1, - anon_sym_DQUOTE, - STATE(3655), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168767] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9532), 1, - anon_sym_DOLLAR, - ACTIONS(9534), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168805] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9536), 1, - anon_sym_DOLLAR, - ACTIONS(9538), 1, - anon_sym_DQUOTE, - STATE(3666), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168843] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9540), 1, - anon_sym_DOLLAR, - ACTIONS(9542), 1, - anon_sym_DQUOTE, - STATE(3664), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168881] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9544), 1, - anon_sym_DOLLAR, - ACTIONS(9546), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168919] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9548), 1, - anon_sym_DOLLAR, - ACTIONS(9550), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168957] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9552), 1, - anon_sym_DOLLAR, - ACTIONS(9554), 1, - anon_sym_DQUOTE, - STATE(3637), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [168995] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9556), 1, - anon_sym_DOLLAR, - ACTIONS(9558), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169033] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9560), 1, - anon_sym_DOLLAR, - ACTIONS(9562), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169071] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9564), 1, - anon_sym_DOLLAR, - ACTIONS(9566), 1, - anon_sym_DQUOTE, - STATE(3671), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169109] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9568), 1, - anon_sym_DOLLAR, - ACTIONS(9570), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169147] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9572), 1, - anon_sym_DOLLAR, - ACTIONS(9574), 1, - anon_sym_DQUOTE, - STATE(3672), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169185] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9576), 1, - anon_sym_DOLLAR, - ACTIONS(9578), 1, - anon_sym_DQUOTE, - STATE(3663), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169223] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9583), 1, - anon_sym_DOLLAR, - ACTIONS(9586), 1, - anon_sym_DQUOTE, - ACTIONS(9588), 1, - sym__string_content, - ACTIONS(9591), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9594), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9597), 1, - anon_sym_BQUOTE, - ACTIONS(9600), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9580), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169261] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9603), 1, - anon_sym_DOLLAR, - ACTIONS(9605), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169299] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9607), 1, - anon_sym_DOLLAR, - ACTIONS(9609), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169337] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9611), 1, - anon_sym_DOLLAR, - ACTIONS(9613), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169375] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9615), 1, - anon_sym_DOLLAR, - ACTIONS(9617), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169413] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9619), 1, - anon_sym_DOLLAR, - ACTIONS(9621), 1, - anon_sym_DQUOTE, - STATE(3673), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169451] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9623), 1, - anon_sym_DOLLAR, - ACTIONS(9625), 1, - anon_sym_DQUOTE, - STATE(3676), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169489] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9627), 1, - anon_sym_DOLLAR, - ACTIONS(9629), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169527] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9631), 1, - anon_sym_DOLLAR, - ACTIONS(9633), 1, - anon_sym_DQUOTE, - STATE(3661), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169565] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9635), 1, - anon_sym_DOLLAR, - ACTIONS(9637), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169603] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9639), 1, - anon_sym_DOLLAR, - ACTIONS(9641), 1, - anon_sym_DQUOTE, - STATE(3639), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169641] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9643), 1, - anon_sym_DOLLAR, - ACTIONS(9645), 1, - anon_sym_DQUOTE, - STATE(3684), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169679] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9647), 1, - anon_sym_DOLLAR, - ACTIONS(9649), 1, - anon_sym_DQUOTE, - STATE(3688), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169717] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9651), 1, - anon_sym_DOLLAR, - ACTIONS(9653), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169755] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9655), 1, - anon_sym_DOLLAR, - ACTIONS(9657), 1, - anon_sym_DQUOTE, - STATE(3682), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169793] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9659), 1, - anon_sym_DOLLAR, - ACTIONS(9661), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169831] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9663), 1, - anon_sym_DOLLAR, - ACTIONS(9665), 1, - anon_sym_DQUOTE, - STATE(3660), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169869] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9667), 1, - anon_sym_DOLLAR, - ACTIONS(9669), 1, - anon_sym_DQUOTE, - STATE(3696), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169907] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9671), 1, - anon_sym_DOLLAR, - ACTIONS(9673), 1, - anon_sym_DQUOTE, - STATE(3694), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169945] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9675), 1, - anon_sym_DOLLAR, - ACTIONS(9677), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [169983] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9679), 1, - anon_sym_DOLLAR, - ACTIONS(9681), 1, - anon_sym_DQUOTE, - STATE(3692), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170021] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9687), 1, - anon_sym_LF, - ACTIONS(9689), 1, - sym_file_descriptor, - ACTIONS(9685), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4519), 2, - sym_file_redirect, - sym__heredoc_pipeline, - ACTIONS(9683), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [170049] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9689), 1, - sym_file_descriptor, - ACTIONS(9691), 1, - anon_sym_LF, - ACTIONS(9685), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4752), 2, - sym_file_redirect, - sym__heredoc_pipeline, - ACTIONS(9683), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [170077] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9693), 1, - anon_sym_DOLLAR, - ACTIONS(9695), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170115] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9697), 1, - anon_sym_DOLLAR, - ACTIONS(9699), 1, - anon_sym_DQUOTE, - STATE(3706), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170153] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9701), 1, - anon_sym_DOLLAR, - ACTIONS(9703), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170191] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9705), 1, - anon_sym_DOLLAR, - ACTIONS(9707), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170229] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9709), 1, - anon_sym_DOLLAR, - ACTIONS(9711), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170267] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9689), 1, - sym_file_descriptor, - ACTIONS(9713), 1, - anon_sym_LF, - ACTIONS(9685), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4727), 2, - sym_file_redirect, - sym__heredoc_pipeline, - ACTIONS(9683), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [170295] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9715), 1, - anon_sym_DOLLAR, - ACTIONS(9717), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170333] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9719), 1, - anon_sym_DOLLAR, - ACTIONS(9721), 1, - anon_sym_DQUOTE, - STATE(3695), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170371] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9723), 1, - anon_sym_DOLLAR, - ACTIONS(9725), 1, - anon_sym_DQUOTE, - STATE(3705), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170409] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9727), 1, - anon_sym_DOLLAR, - ACTIONS(9729), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170447] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9731), 1, - anon_sym_DOLLAR, - ACTIONS(9733), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170485] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9735), 1, - anon_sym_DOLLAR, - ACTIONS(9737), 1, - anon_sym_DQUOTE, - STATE(3704), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170523] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9739), 1, - anon_sym_DOLLAR, - ACTIONS(9741), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170561] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9743), 1, - anon_sym_DOLLAR, - ACTIONS(9745), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170599] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9747), 1, - anon_sym_DOLLAR, - ACTIONS(9749), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170637] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9751), 1, - anon_sym_DOLLAR, - ACTIONS(9753), 1, - anon_sym_DQUOTE, - STATE(3698), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170675] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9755), 1, - anon_sym_DOLLAR, - ACTIONS(9757), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170713] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9689), 1, - sym_file_descriptor, - ACTIONS(9759), 1, - anon_sym_LF, - ACTIONS(9685), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4701), 2, - sym_file_redirect, - sym__heredoc_pipeline, - ACTIONS(9683), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [170741] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9761), 1, - anon_sym_DOLLAR, - ACTIONS(9763), 1, - anon_sym_DQUOTE, - STATE(3701), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170779] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9765), 1, - anon_sym_DOLLAR, - ACTIONS(9767), 1, - anon_sym_DQUOTE, - STATE(3713), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170817] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9769), 1, - anon_sym_DOLLAR, - ACTIONS(9771), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170855] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9773), 1, - anon_sym_DOLLAR, - ACTIONS(9775), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170893] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9777), 1, - anon_sym_DOLLAR, - ACTIONS(9779), 1, - anon_sym_DQUOTE, - STATE(3717), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170931] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9781), 1, - anon_sym_DOLLAR, - ACTIONS(9783), 1, - anon_sym_DQUOTE, - STATE(3712), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [170969] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9689), 1, - sym_file_descriptor, - ACTIONS(9785), 1, - anon_sym_LF, - ACTIONS(9685), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4673), 2, - sym_file_redirect, - sym__heredoc_pipeline, - ACTIONS(9683), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [170997] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9787), 1, - anon_sym_DOLLAR, - ACTIONS(9789), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171035] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9791), 1, - anon_sym_DOLLAR, - ACTIONS(9793), 1, - anon_sym_DQUOTE, - STATE(3721), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171073] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9795), 1, - anon_sym_DOLLAR, - ACTIONS(9797), 1, - anon_sym_DQUOTE, - STATE(3724), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171111] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9689), 1, - sym_file_descriptor, - ACTIONS(9799), 1, - anon_sym_LF, - ACTIONS(9685), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4720), 2, - sym_file_redirect, - sym__heredoc_pipeline, - ACTIONS(9683), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [171139] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9801), 1, - anon_sym_DOLLAR, - ACTIONS(9803), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171177] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9805), 1, - anon_sym_DOLLAR, - ACTIONS(9807), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171215] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9809), 1, - anon_sym_DOLLAR, - ACTIONS(9811), 1, - anon_sym_DQUOTE, - STATE(3729), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171253] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9813), 1, - anon_sym_DOLLAR, - ACTIONS(9815), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171291] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9817), 1, - anon_sym_DOLLAR, - ACTIONS(9819), 1, - anon_sym_DQUOTE, - STATE(3722), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171329] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9821), 1, - anon_sym_DOLLAR, - ACTIONS(9823), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171367] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9825), 1, - anon_sym_DOLLAR, - ACTIONS(9827), 1, - anon_sym_DQUOTE, - STATE(3733), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171405] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9829), 1, - anon_sym_DOLLAR, - ACTIONS(9831), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171443] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9833), 1, - anon_sym_DOLLAR, - ACTIONS(9835), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171481] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9837), 1, - anon_sym_DOLLAR, - ACTIONS(9839), 1, - anon_sym_DQUOTE, - STATE(3734), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171519] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9841), 1, - anon_sym_DOLLAR, - ACTIONS(9843), 1, - anon_sym_DQUOTE, - STATE(3702), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171557] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9845), 1, - anon_sym_DOLLAR, - ACTIONS(9847), 1, - anon_sym_DQUOTE, - STATE(3728), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171595] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9849), 1, - anon_sym_DOLLAR, - ACTIONS(9851), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171633] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9853), 1, - anon_sym_DOLLAR, - ACTIONS(9855), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171671] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9857), 1, - anon_sym_DOLLAR, - ACTIONS(9859), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171709] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9861), 1, - anon_sym_DOLLAR, - ACTIONS(9863), 1, - anon_sym_DQUOTE, - STATE(3678), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171747] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9865), 1, - anon_sym_DOLLAR, - ACTIONS(9867), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171785] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9869), 1, - anon_sym_DOLLAR, - ACTIONS(9871), 1, - anon_sym_DQUOTE, - STATE(3743), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171823] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9873), 1, - anon_sym_DOLLAR, - ACTIONS(9875), 1, - anon_sym_DQUOTE, - STATE(3746), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171861] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9877), 1, - anon_sym_DOLLAR, - ACTIONS(9879), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171899] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9881), 1, - anon_sym_DOLLAR, - ACTIONS(9883), 1, - anon_sym_DQUOTE, - STATE(3737), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [171937] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9689), 1, - sym_file_descriptor, - ACTIONS(9885), 1, - anon_sym_LF, - ACTIONS(9685), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4405), 2, - sym_file_redirect, - sym__heredoc_pipeline, - ACTIONS(9683), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [171965] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9887), 1, - anon_sym_DOLLAR, - ACTIONS(9889), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [172003] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9891), 1, - anon_sym_DOLLAR, - ACTIONS(9893), 1, - anon_sym_DQUOTE, - STATE(3740), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [172041] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9895), 1, - anon_sym_DOLLAR, - ACTIONS(9897), 1, - anon_sym_DQUOTE, - STATE(3708), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [172079] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9438), 1, - sym__string_content, - ACTIONS(9440), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9442), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9444), 1, - anon_sym_BQUOTE, - ACTIONS(9446), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9899), 1, - anon_sym_DOLLAR, - ACTIONS(9901), 1, - anon_sym_DQUOTE, - STATE(3669), 1, - aux_sym_string_repeat1, - ACTIONS(9432), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3922), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [172117] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9689), 1, - sym_file_descriptor, - ACTIONS(9903), 1, - anon_sym_LF, - ACTIONS(9685), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4407), 2, - sym_file_redirect, - sym__heredoc_pipeline, - ACTIONS(9683), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [172145] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9907), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172170] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9741), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172195] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - STATE(1395), 1, - sym_string, - ACTIONS(3132), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3130), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172220] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9889), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172245] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9913), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172270] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3488), 1, - anon_sym_DQUOTE, - STATE(1792), 1, - sym_string, - ACTIONS(3490), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3486), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172295] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9915), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172320] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9397), 1, - anon_sym_DQUOTE, - STATE(3980), 1, - sym_string, - ACTIONS(9399), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9395), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172345] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5487), 1, - anon_sym_DQUOTE, - STATE(2952), 1, - sym_string, - ACTIONS(6032), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6030), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172370] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9917), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172395] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9733), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172420] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9919), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172445] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6273), 1, - anon_sym_DQUOTE, - STATE(3125), 1, - sym_string, - ACTIONS(6275), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6271), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172470] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1897), 1, - anon_sym_DQUOTE, - STATE(1051), 1, - sym_string, - ACTIONS(2960), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2958), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172495] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1929), 1, - anon_sym_DQUOTE, - STATE(1144), 1, - sym_string, - ACTIONS(3062), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3060), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172520] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9921), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172545] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9879), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172570] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9901), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172595] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9458), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172620] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9867), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172645] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9711), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172670] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9923), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172695] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9859), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172720] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9925), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172745] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2901), 1, - sym_string, - ACTIONS(5565), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5561), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172770] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9927), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172795] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6408), 1, - anon_sym_DQUOTE, - STATE(3535), 1, - sym_string, - ACTIONS(6410), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6406), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172820] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - sym_string, - ACTIONS(5445), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5441), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172845] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9929), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172870] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9851), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172895] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9855), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172920] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9931), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172945] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9831), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172970] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5378), 1, - anon_sym_DQUOTE, - STATE(2889), 1, - sym_string, - ACTIONS(5380), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5376), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [172995] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1209), 1, - anon_sym_DQUOTE, - STATE(354), 1, - sym_string, - ACTIONS(1211), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1207), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173020] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9835), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173045] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9933), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173070] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9935), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173095] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9937), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173120] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9482), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173145] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9939), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173170] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9478), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173195] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9941), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173220] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9823), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173245] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9943), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173270] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9945), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173295] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6676), 1, - anon_sym_DQUOTE, - STATE(3521), 1, - sym_string, - ACTIONS(6678), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6674), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173320] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9947), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173345] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3379), 1, - anon_sym_DQUOTE, - STATE(1681), 1, - sym_string, - ACTIONS(3381), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3377), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173370] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9486), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173395] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3995), 1, - anon_sym_DQUOTE, - STATE(2005), 1, - sym_string, - ACTIONS(3997), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3993), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173420] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9807), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173445] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9815), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173470] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9949), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173495] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(160), 1, - anon_sym_DQUOTE, - STATE(1605), 1, - sym_string, - ACTIONS(3671), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3669), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173520] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9803), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173545] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9637), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173570] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9951), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173595] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9953), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173620] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9955), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173645] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3729), 1, - anon_sym_DQUOTE, - STATE(2002), 1, - sym_string, - ACTIONS(3731), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3727), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173670] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9957), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173695] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9789), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173720] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - STATE(1253), 1, - sym_string, - ACTIONS(3128), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3126), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173745] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9959), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173770] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - STATE(691), 1, - sym_string, - ACTIONS(1959), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1957), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173795] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9961), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173820] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9757), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173845] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2705), 1, - anon_sym_DQUOTE, - STATE(1351), 1, - sym_string, - ACTIONS(3052), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3050), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173870] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9963), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173895] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9771), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173920] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9965), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173945] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9775), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173970] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9967), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [173995] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3056), 1, - anon_sym_DQUOTE, - STATE(1302), 1, - sym_string, - ACTIONS(3058), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3054), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174020] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9749), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174045] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2478), 1, - anon_sym_DQUOTE, - STATE(1047), 1, - sym_string, - ACTIONS(2775), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2773), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174070] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym_DQUOTE, - STATE(1008), 1, - sym_string, - ACTIONS(2317), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2315), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174095] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9729), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174120] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6646), 1, - anon_sym_DQUOTE, - STATE(3183), 1, - sym_string, - ACTIONS(6648), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6644), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174145] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9969), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174170] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9745), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174195] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2383), 1, - anon_sym_DQUOTE, - STATE(1105), 1, - sym_string, - ACTIONS(2826), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2824), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174220] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9717), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174245] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4064), 1, - anon_sym_DQUOTE, - STATE(2126), 1, - sym_string, - ACTIONS(4066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4062), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174270] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9971), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174295] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9973), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174320] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9975), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174345] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3904), 1, - anon_sym_DQUOTE, - STATE(2032), 1, - sym_string, - ACTIONS(3906), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3902), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174370] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9707), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174395] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1238), 1, - anon_sym_DQUOTE, - STATE(429), 1, - sym_string, - ACTIONS(1240), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1236), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174420] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9977), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174445] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9979), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174470] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9695), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174495] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9981), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174520] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9703), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174545] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_DQUOTE, - STATE(926), 1, - sym_string, - ACTIONS(2369), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2367), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174570] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9510), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174595] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1563), 1, - anon_sym_DQUOTE, - STATE(960), 1, - sym_string, - ACTIONS(2605), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2603), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174620] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9983), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174645] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9985), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174670] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(244), 1, - anon_sym_DQUOTE, - STATE(1482), 1, - sym_string, - ACTIONS(3723), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3721), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174695] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9987), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174720] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6886), 1, - anon_sym_DQUOTE, - STATE(3540), 1, - sym_string, - ACTIONS(6888), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6884), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174745] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3601), 1, - anon_sym_DQUOTE, - STATE(1796), 1, - sym_string, - ACTIONS(3603), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3599), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174770] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9677), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174795] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3795), 1, - anon_sym_DQUOTE, - STATE(1757), 1, - sym_string, - ACTIONS(3797), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3793), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174820] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9989), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174845] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9653), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174870] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9661), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174895] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2609), 1, - anon_sym_DQUOTE, - STATE(1190), 1, - sym_string, - ACTIONS(2611), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2607), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174920] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9991), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174945] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9454), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174970] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4991), 1, - anon_sym_DQUOTE, - STATE(2389), 1, - sym_string, - ACTIONS(4993), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4989), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [174995] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - STATE(4132), 1, - sym_string, - ACTIONS(9424), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9422), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175020] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9629), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175045] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9993), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175070] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9462), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175095] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_DQUOTE, - STATE(2730), 1, - sym_string, - ACTIONS(5294), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5290), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175120] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9428), 1, - anon_sym_DQUOTE, - STATE(4123), 1, - sym_string, - ACTIONS(9430), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9426), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175145] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9995), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175170] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9617), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175195] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4501), 1, - anon_sym_DQUOTE, - STATE(2238), 1, - sym_string, - ACTIONS(4503), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4499), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175220] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9997), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175245] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9999), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175270] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9605), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175295] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9613), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175320] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(10001), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175345] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9609), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175370] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2407), 1, - anon_sym_DQUOTE, - STATE(873), 1, - sym_string, - ACTIONS(2409), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2405), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175395] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1731), 1, - anon_sym_DQUOTE, - STATE(819), 1, - sym_string, - ACTIONS(1963), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1961), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175420] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9546), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175445] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9558), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175470] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9550), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175495] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9570), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175520] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(10003), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175545] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(10005), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175570] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(10007), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175595] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175620] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 1, - anon_sym_DQUOTE, - STATE(802), 1, - sym_string, - ACTIONS(2373), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2371), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175645] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_DQUOTE, - STATE(1431), 1, - sym_string, - ACTIONS(3066), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3064), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175670] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 1, - anon_sym_DQUOTE, - STATE(381), 1, - sym_string, - ACTIONS(1223), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1219), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175695] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9526), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175720] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9534), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175745] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_DQUOTE, - STATE(1276), 1, - sym_string, - ACTIONS(2907), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2903), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175770] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(10009), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175795] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(10011), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175820] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(10013), 1, - anon_sym_DQUOTE, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175845] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1995), 1, - anon_sym_DQUOTE, - STATE(878), 1, - sym_string, - ACTIONS(2769), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2767), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175870] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2536), 1, - anon_sym_DQUOTE, - STATE(1333), 1, - sym_string, - ACTIONS(3076), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3074), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175895] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9498), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175920] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9502), 1, - anon_sym_DQUOTE, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175945] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - sym__string_content, - ACTIONS(9911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9905), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [175967] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10015), 1, - anon_sym_LT_LT, - ACTIONS(10021), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10023), 1, - anon_sym_LT_LT_LT, - ACTIONS(10019), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10017), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [175992] = 9, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10025), 1, - anon_sym_DOLLAR, - ACTIONS(10027), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10029), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10031), 1, - anon_sym_BQUOTE, - ACTIONS(10033), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10035), 1, - sym__heredoc_body_middle, - ACTIONS(10037), 1, - sym_heredoc_end, - STATE(3908), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [176023] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10041), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(10039), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [176042] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10043), 1, - anon_sym_LT_LT, - ACTIONS(10049), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10051), 1, - anon_sym_LT_LT_LT, - ACTIONS(10047), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10045), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176067] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10053), 1, - anon_sym_LT_LT, - ACTIONS(10059), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10061), 1, - anon_sym_LT_LT_LT, - ACTIONS(10057), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10055), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10065), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(10063), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [176111] = 9, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10067), 1, - anon_sym_DOLLAR, - ACTIONS(10070), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10073), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10076), 1, - anon_sym_BQUOTE, - ACTIONS(10079), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10082), 1, - sym__heredoc_body_middle, - ACTIONS(10085), 1, - sym_heredoc_end, - STATE(3907), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [176142] = 9, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10025), 1, - anon_sym_DOLLAR, - ACTIONS(10027), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10029), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10031), 1, - anon_sym_BQUOTE, - ACTIONS(10033), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10087), 1, - sym__heredoc_body_middle, - ACTIONS(10089), 1, - sym_heredoc_end, - STATE(3907), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [176173] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10043), 1, - anon_sym_LT_LT, - ACTIONS(10049), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10095), 1, - anon_sym_LT_LT_LT, - ACTIONS(10093), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10091), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176198] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10043), 1, - anon_sym_LT_LT, - ACTIONS(10049), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10101), 1, - anon_sym_LT_LT_LT, - ACTIONS(10099), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10097), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10105), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(10103), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [176242] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10043), 1, - anon_sym_LT_LT, - ACTIONS(10049), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10111), 1, - anon_sym_LT_LT_LT, - ACTIONS(10109), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10107), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176267] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10015), 1, - anon_sym_LT_LT, - ACTIONS(10021), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10117), 1, - anon_sym_LT_LT_LT, - ACTIONS(10115), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10113), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10121), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(10119), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [176311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10125), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(10123), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [176330] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10043), 1, - anon_sym_LT_LT, - ACTIONS(10049), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10131), 1, - anon_sym_LT_LT_LT, - ACTIONS(10129), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10127), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10135), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(10133), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [176374] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10137), 1, - anon_sym_LT_LT, - ACTIONS(10143), 1, - anon_sym_LT_LT_DASH, - ACTIONS(10145), 1, - anon_sym_LT_LT_LT, - ACTIONS(10141), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10139), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176399] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10147), 10, - anon_sym_U, - anon_sym_u, - anon_sym_L, - anon_sym_Q, - anon_sym_E, - anon_sym_P, - anon_sym_A, - anon_sym_K, - anon_sym_a, - anon_sym_k, - [176415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 1, - sym__concat, - ACTIONS(1268), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 1, - sym__concat, - ACTIONS(1322), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10151), 1, - sym__concat, - ACTIONS(10149), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176469] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10153), 10, - anon_sym_U, - anon_sym_u, - anon_sym_L, - anon_sym_Q, - anon_sym_E, - anon_sym_P, - anon_sym_A, - anon_sym_K, - anon_sym_a, - anon_sym_k, - [176485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 1, - sym__concat, - ACTIONS(1298), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 1, - sym__concat, - ACTIONS(1342), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176521] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - aux_sym_number_token1, - ACTIONS(5272), 1, - aux_sym_number_token2, - ACTIONS(5274), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10155), 1, - anon_sym_LF, - ACTIONS(10157), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5266), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4380), 3, - sym_arithmetic_expansion, - sym_number, - sym_expansion, - [176549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10159), 1, - sym__concat, - ACTIONS(9586), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176567] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 1, - sym__concat, - ACTIONS(1272), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176585] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 1, - sym__concat, - ACTIONS(1330), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 1, - sym__concat, - ACTIONS(1268), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 1, - sym__concat, - ACTIONS(1346), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 1, - sym__concat, - ACTIONS(1334), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 1, - sym__concat, - ACTIONS(1310), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176675] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9586), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176690] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10161), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [176705] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - aux_sym_number_token1, - ACTIONS(5272), 1, - aux_sym_number_token2, - ACTIONS(10163), 1, - anon_sym_LF, - ACTIONS(10165), 1, - anon_sym_RBRACE3, - ACTIONS(10167), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5266), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4829), 2, - sym_arithmetic_expansion, - sym_number, - [176732] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 1, - anon_sym_LF, - ACTIONS(10169), 1, - aux_sym_concatenation_token1, - ACTIONS(10171), 1, - sym__concat, - STATE(3959), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1242), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - sym__special_character, - [176755] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - aux_sym_number_token1, - ACTIONS(5272), 1, - aux_sym_number_token2, - ACTIONS(10173), 1, - anon_sym_LF, - ACTIONS(10175), 1, - anon_sym_RBRACE3, - ACTIONS(10177), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5266), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4848), 2, - sym_arithmetic_expansion, - sym_number, - [176782] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10093), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10091), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176798] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10181), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10179), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176814] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10185), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10183), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176830] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10169), 1, - aux_sym_concatenation_token1, - ACTIONS(10171), 1, - sym__concat, - ACTIONS(10187), 1, - anon_sym_in, - ACTIONS(10191), 1, - anon_sym_LF, - STATE(3946), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10189), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [176854] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10169), 1, - aux_sym_concatenation_token1, - ACTIONS(10171), 1, - sym__concat, - ACTIONS(10193), 1, - anon_sym_in, - ACTIONS(10197), 1, - anon_sym_LF, - STATE(3959), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10195), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [176878] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10115), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10113), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176894] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10201), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10199), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176910] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 1, - anon_sym_LF, - ACTIONS(10169), 1, - aux_sym_concatenation_token1, - ACTIONS(10203), 1, - sym__concat, - STATE(3951), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1252), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [176932] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10129), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10127), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176948] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10207), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10205), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176964] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10019), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10017), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176980] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10099), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10097), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [176996] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 1, - anon_sym_LF, - ACTIONS(10209), 1, - aux_sym_concatenation_token1, - ACTIONS(10212), 1, - sym__concat, - STATE(3951), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [177018] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10169), 1, - aux_sym_concatenation_token1, - ACTIONS(10171), 1, - sym__concat, - ACTIONS(10215), 1, - anon_sym_in, - ACTIONS(10219), 1, - anon_sym_LF, - STATE(3959), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10217), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [177042] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10141), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10139), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [177058] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10169), 1, - aux_sym_concatenation_token1, - ACTIONS(10171), 1, - sym__concat, - ACTIONS(10221), 1, - anon_sym_in, - ACTIONS(10225), 1, - anon_sym_LF, - STATE(3946), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10223), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [177082] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10109), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10107), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [177098] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10169), 1, - aux_sym_concatenation_token1, - ACTIONS(10171), 1, - sym__concat, - ACTIONS(10227), 1, - anon_sym_in, - ACTIONS(10231), 1, - anon_sym_LF, - STATE(3946), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10229), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [177122] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10047), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10045), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [177138] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10169), 1, - aux_sym_concatenation_token1, - ACTIONS(10171), 1, - sym__concat, - ACTIONS(10233), 1, - anon_sym_in, - ACTIONS(10237), 1, - anon_sym_LF, - STATE(3959), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10235), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [177162] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 1, - anon_sym_LF, - ACTIONS(10169), 1, - aux_sym_concatenation_token1, - ACTIONS(10239), 1, - sym__concat, - STATE(3951), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1246), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [177184] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10243), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10241), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [177200] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10247), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10245), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [177216] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10249), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [177232] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10255), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10253), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [177248] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10057), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10055), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [177264] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10259), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10257), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [177280] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10263), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(10261), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [177296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1272), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177311] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(434), 1, - anon_sym_LBRACK, - ACTIONS(436), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10265), 1, - anon_sym_LPAREN, - STATE(2947), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177332] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10233), 1, - anon_sym_in, - ACTIONS(10237), 1, - anon_sym_LF, - ACTIONS(10267), 1, - sym__special_character, - STATE(4009), 1, - aux_sym__literal_repeat1, - ACTIONS(10235), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [177353] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1320), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1318), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177368] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10269), 1, - anon_sym_LPAREN, - STATE(3135), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177389] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10271), 1, - anon_sym_LPAREN, - STATE(3143), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177410] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1322), 1, - anon_sym_DOLLAR, - ACTIONS(1324), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [177425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1342), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177440] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1348), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1346), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177455] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10269), 1, - anon_sym_LPAREN, - STATE(3157), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177476] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10269), 1, - anon_sym_LPAREN, - STATE(3566), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177497] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1342), 1, - anon_sym_DOLLAR, - ACTIONS(1344), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [177512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1328), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1326), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177527] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1284), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177542] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10269), 1, - anon_sym_LPAREN, - STATE(3162), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1324), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1322), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177578] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1310), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177593] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10273), 1, - anon_sym_LPAREN, - STATE(3179), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177614] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1334), 1, - anon_sym_DOLLAR, - ACTIONS(1336), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [177629] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 1, - anon_sym_DOLLAR, - ACTIONS(1274), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [177644] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10269), 1, - anon_sym_LPAREN, - STATE(3134), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177665] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(296), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10275), 1, - anon_sym_LPAREN, - STATE(3586), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1298), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177701] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1276), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1268), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177731] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(434), 1, - anon_sym_LBRACK, - ACTIONS(436), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10277), 1, - anon_sym_LPAREN, - STATE(2950), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1268), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177767] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1330), 1, - anon_sym_DOLLAR, - ACTIONS(1332), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [177782] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10215), 1, - anon_sym_in, - ACTIONS(10219), 1, - anon_sym_LF, - ACTIONS(10267), 1, - sym__special_character, - STATE(4009), 1, - aux_sym__literal_repeat1, - ACTIONS(10217), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [177803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1302), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177818] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(434), 1, - anon_sym_LBRACK, - ACTIONS(436), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10279), 1, - anon_sym_LPAREN, - STATE(3006), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1258), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1280), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177869] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10281), 1, - anon_sym_LPAREN, - STATE(3123), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1340), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1338), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177905] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10269), 1, - anon_sym_LPAREN, - STATE(3561), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177926] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_DOLLAR, - ACTIONS(1270), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [177941] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(434), 1, - anon_sym_LBRACK, - ACTIONS(436), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10277), 1, - anon_sym_LPAREN, - STATE(2942), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [177962] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_DOLLAR, - ACTIONS(1270), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [177977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1294), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [177992] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10269), 1, - anon_sym_LPAREN, - STATE(3110), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [178013] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(434), 1, - anon_sym_LBRACK, - ACTIONS(436), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10277), 1, - anon_sym_LPAREN, - STATE(3007), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [178034] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1357), 1, - anon_sym_LF, - ACTIONS(10283), 1, - sym__special_character, - STATE(4009), 1, - aux_sym__literal_repeat1, - ACTIONS(1352), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [178053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1336), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1334), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [178068] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(296), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10275), 1, - anon_sym_LPAREN, - STATE(3582), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [178089] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(296), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10286), 1, - anon_sym_LPAREN, - STATE(3576), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [178110] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(434), 1, - anon_sym_LBRACK, - ACTIONS(436), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10277), 1, - anon_sym_LPAREN, - STATE(3010), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [178131] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10193), 1, - anon_sym_in, - ACTIONS(10197), 1, - anon_sym_LF, - ACTIONS(10267), 1, - sym__special_character, - STATE(4009), 1, - aux_sym__literal_repeat1, - ACTIONS(10195), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [178152] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10288), 1, - anon_sym_LPAREN, - STATE(3567), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [178173] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10290), 1, - anon_sym_LPAREN, - STATE(3119), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [178194] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1346), 1, - anon_sym_DOLLAR, - ACTIONS(1348), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [178209] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10269), 1, - anon_sym_LPAREN, - STATE(3129), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [178230] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1330), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [178245] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10269), 1, - anon_sym_LPAREN, - STATE(3124), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [178266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1314), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [178281] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10269), 1, - anon_sym_LPAREN, - STATE(3111), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [178302] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10292), 1, - anon_sym_fi, - ACTIONS(10294), 1, - anon_sym_elif, - ACTIONS(10296), 1, - anon_sym_else, - STATE(4585), 1, - sym_else_clause, - STATE(4072), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [178322] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10294), 1, - anon_sym_elif, - ACTIONS(10296), 1, - anon_sym_else, - ACTIONS(10298), 1, - anon_sym_fi, - STATE(4425), 1, - sym_else_clause, - STATE(4072), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [178342] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10300), 1, - anon_sym_RPAREN, - ACTIONS(10302), 1, - anon_sym_PIPE, - STATE(4089), 1, - aux_sym_concatenation_repeat1, - STATE(4254), 1, - aux_sym_case_item_repeat1, - ACTIONS(10304), 2, - sym__concat, - aux_sym_concatenation_token1, - [178362] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10294), 1, - anon_sym_elif, - ACTIONS(10296), 1, - anon_sym_else, - ACTIONS(10306), 1, - anon_sym_fi, - STATE(4640), 1, - sym_else_clause, - STATE(4072), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [178382] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10308), 1, - anon_sym_RPAREN, - STATE(4089), 1, - aux_sym_concatenation_repeat1, - STATE(4264), 1, - aux_sym_case_item_repeat1, - ACTIONS(10304), 2, - sym__concat, - aux_sym_concatenation_token1, - [178402] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10294), 1, - anon_sym_elif, - ACTIONS(10296), 1, - anon_sym_else, - ACTIONS(10310), 1, - anon_sym_fi, - STATE(4604), 1, - sym_else_clause, - STATE(4072), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [178422] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10314), 1, - anon_sym_COMMA, - ACTIONS(10316), 1, - anon_sym_LF, - STATE(2872), 1, - sym__c_terminator, - STATE(4045), 1, - aux_sym__for_body_repeat1, - ACTIONS(10312), 2, - anon_sym_SEMI, - anon_sym_AMP, - [178442] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10318), 1, - anon_sym_RPAREN, - STATE(4091), 1, - aux_sym_concatenation_repeat1, - STATE(4244), 1, - aux_sym_case_item_repeat1, - ACTIONS(10304), 2, - sym__concat, - aux_sym_concatenation_token1, - [178462] = 4, - ACTIONS(63), 1, - sym_comment, - STATE(4091), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10304), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1244), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - sym__special_character, - [178478] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10314), 1, - anon_sym_COMMA, - ACTIONS(10322), 1, - anon_sym_LF, - STATE(2801), 1, - sym__c_terminator, - STATE(4073), 1, - aux_sym__for_body_repeat1, - ACTIONS(10320), 2, - anon_sym_SEMI, - anon_sym_AMP, - [178498] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10314), 1, - anon_sym_COMMA, - ACTIONS(10326), 1, - anon_sym_LF, - STATE(2544), 1, - sym__c_terminator, - STATE(4073), 1, - aux_sym__for_body_repeat1, - ACTIONS(10324), 2, - anon_sym_SEMI, - anon_sym_AMP, - [178518] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 1, - anon_sym_LF, - ACTIONS(1242), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - sym__special_character, - [178532] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10328), 1, - anon_sym_RPAREN, - STATE(4091), 1, - aux_sym_concatenation_repeat1, - STATE(4187), 1, - aux_sym_case_item_repeat1, - ACTIONS(10304), 2, - sym__concat, - aux_sym_concatenation_token1, - [178552] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 1, - sym__special_character, - STATE(4088), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1244), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - ACTIONS(10330), 2, - sym__concat, - aux_sym_concatenation_token1, - [178570] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10314), 1, - anon_sym_COMMA, - ACTIONS(10334), 1, - anon_sym_LF, - STATE(2516), 1, - sym__c_terminator, - STATE(4033), 1, - aux_sym__for_body_repeat1, - ACTIONS(10332), 2, - anon_sym_SEMI, - anon_sym_AMP, - [178590] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10314), 1, - anon_sym_COMMA, - ACTIONS(10338), 1, - anon_sym_LF, - STATE(2802), 1, - sym__c_terminator, - STATE(4047), 1, - aux_sym__for_body_repeat1, - ACTIONS(10336), 2, - anon_sym_SEMI, - anon_sym_AMP, - [178610] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10340), 1, - anon_sym_RPAREN, - STATE(4091), 1, - aux_sym_concatenation_repeat1, - STATE(4281), 1, - aux_sym_case_item_repeat1, - ACTIONS(10304), 2, - sym__concat, - aux_sym_concatenation_token1, - [178630] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10294), 1, - anon_sym_elif, - ACTIONS(10296), 1, - anon_sym_else, - ACTIONS(10342), 1, - anon_sym_fi, - STATE(4412), 1, - sym_else_clause, - STATE(4072), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [178650] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10314), 1, - anon_sym_COMMA, - ACTIONS(10346), 1, - anon_sym_LF, - STATE(2865), 1, - sym__c_terminator, - STATE(4032), 1, - aux_sym__for_body_repeat1, - ACTIONS(10344), 2, - anon_sym_SEMI, - anon_sym_AMP, - [178670] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10348), 1, - anon_sym_RPAREN, - STATE(4089), 1, - aux_sym_concatenation_repeat1, - STATE(4169), 1, - aux_sym_case_item_repeat1, - ACTIONS(10304), 2, - sym__concat, - aux_sym_concatenation_token1, - [178690] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10294), 1, - anon_sym_elif, - ACTIONS(10296), 1, - anon_sym_else, - ACTIONS(10350), 1, - anon_sym_fi, - STATE(4748), 1, - sym_else_clause, - STATE(4072), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [178710] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10352), 1, - anon_sym_RPAREN, - STATE(4089), 1, - aux_sym_concatenation_repeat1, - STATE(4157), 1, - aux_sym_case_item_repeat1, - ACTIONS(10304), 2, - sym__concat, - aux_sym_concatenation_token1, - [178730] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10314), 1, - anon_sym_COMMA, - ACTIONS(10356), 1, - anon_sym_LF, - STATE(2834), 1, - sym__c_terminator, - STATE(4073), 1, - aux_sym__for_body_repeat1, - ACTIONS(10354), 2, - anon_sym_SEMI, - anon_sym_AMP, - [178750] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10358), 1, - anon_sym_RPAREN, - STATE(4091), 1, - aux_sym_concatenation_repeat1, - STATE(4226), 1, - aux_sym_case_item_repeat1, - ACTIONS(10304), 2, - sym__concat, - aux_sym_concatenation_token1, - [178770] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10314), 1, - anon_sym_COMMA, - ACTIONS(10362), 1, - anon_sym_LF, - STATE(2882), 1, - sym__c_terminator, - STATE(4073), 1, - aux_sym__for_body_repeat1, - ACTIONS(10360), 2, - anon_sym_SEMI, - anon_sym_AMP, - [178790] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10364), 1, - sym_simple_heredoc_body, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - STATE(4724), 1, - sym_heredoc_body, - STATE(3004), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [178807] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10368), 1, - sym_simple_heredoc_body, - STATE(4414), 1, - sym_heredoc_body, - STATE(3602), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [178824] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10370), 1, - sym_simple_heredoc_body, - STATE(4564), 1, - sym_heredoc_body, - STATE(3022), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [178841] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(10372), 1, - anon_sym_SEMI, - ACTIONS(10374), 1, - anon_sym_do, - STATE(3045), 1, - sym_do_group, - STATE(3046), 1, - sym_compound_statement, - [178860] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10364), 1, - sym_simple_heredoc_body, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - STATE(4724), 1, - sym_heredoc_body, - STATE(3085), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [178877] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10376), 1, - anon_sym_SLASH, - ACTIONS(10378), 1, - anon_sym_RBRACE3, - STATE(4080), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10330), 2, - sym__concat, - aux_sym_concatenation_token1, - [178894] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5555), 1, - anon_sym_RPAREN, - ACTIONS(5557), 1, - anon_sym_DQUOTE, - STATE(4524), 1, - sym_string, - ACTIONS(5559), 2, - sym_regex, - sym_raw_string, - [178911] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10380), 1, - anon_sym_in, - ACTIONS(10384), 1, - anon_sym_LF, - ACTIONS(10382), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [178926] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10364), 1, - sym_simple_heredoc_body, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - STATE(4724), 1, - sym_heredoc_body, - STATE(3014), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [178943] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10340), 1, - anon_sym_RPAREN, - ACTIONS(10386), 1, - sym__special_character, - STATE(4130), 1, - aux_sym__literal_repeat1, - STATE(4243), 1, - aux_sym_case_item_repeat1, - [178962] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10370), 1, - sym_simple_heredoc_body, - STATE(4564), 1, - sym_heredoc_body, - STATE(3057), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [178979] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10221), 1, - anon_sym_in, - ACTIONS(10225), 1, - anon_sym_LF, - ACTIONS(10223), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [178994] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10388), 1, - sym_simple_heredoc_body, - STATE(4591), 1, - sym_heredoc_body, - STATE(3584), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [179011] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10390), 1, - anon_sym_SLASH, - ACTIONS(10392), 1, - anon_sym_RBRACE3, - STATE(4080), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10330), 2, - sym__concat, - aux_sym_concatenation_token1, - [179028] = 4, - ACTIONS(63), 1, - sym_comment, - STATE(4089), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10304), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(10394), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [179043] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10396), 1, - anon_sym_SLASH, - ACTIONS(10398), 1, - anon_sym_RBRACE3, - STATE(4088), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10330), 2, - sym__concat, - aux_sym_concatenation_token1, - [179060] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10400), 1, - anon_sym_in, - ACTIONS(10404), 1, - anon_sym_LF, - ACTIONS(10402), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [179075] = 4, - ACTIONS(63), 1, - sym_comment, - STATE(4091), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10304), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(10406), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [179090] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5557), 1, - anon_sym_DQUOTE, - ACTIONS(10408), 1, - anon_sym_RPAREN, - STATE(4515), 1, - sym_string, - ACTIONS(10410), 2, - sym_regex, - sym_raw_string, - [179107] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10388), 1, - sym_simple_heredoc_body, - STATE(4591), 1, - sym_heredoc_body, - STATE(3577), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [179124] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10388), 1, - sym_simple_heredoc_body, - STATE(4591), 1, - sym_heredoc_body, - STATE(3575), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [179141] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10364), 1, - sym_simple_heredoc_body, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - STATE(4724), 1, - sym_heredoc_body, - STATE(3035), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [179158] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10370), 1, - sym_simple_heredoc_body, - STATE(4564), 1, - sym_heredoc_body, - STATE(3023), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [179175] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10328), 1, - anon_sym_RPAREN, - ACTIONS(10386), 1, - sym__special_character, - STATE(4130), 1, - aux_sym__literal_repeat1, - STATE(4242), 1, - aux_sym_case_item_repeat1, - [179194] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10414), 1, - anon_sym_elif, - ACTIONS(10412), 2, - anon_sym_fi, - anon_sym_else, - STATE(4072), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [179209] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10419), 1, - anon_sym_COMMA, - ACTIONS(10422), 1, - anon_sym_LF, - STATE(4073), 1, - aux_sym__for_body_repeat1, - ACTIONS(10417), 2, - anon_sym_SEMI, - anon_sym_AMP, - [179226] = 4, - ACTIONS(63), 1, - sym_comment, - STATE(4074), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - ACTIONS(10424), 2, - sym__concat, - aux_sym_concatenation_token1, - [179241] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10427), 1, - anon_sym_SEMI, - ACTIONS(10429), 1, - anon_sym_do, - STATE(2997), 1, - sym_compound_statement, - STATE(3041), 1, - sym_do_group, - [179260] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10358), 1, - anon_sym_RPAREN, - ACTIONS(10386), 1, - sym__special_character, - STATE(4130), 1, - aux_sym__literal_repeat1, - STATE(4210), 1, - aux_sym_case_item_repeat1, - [179279] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10368), 1, - sym_simple_heredoc_body, - STATE(4414), 1, - sym_heredoc_body, - STATE(3601), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [179296] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10368), 1, - sym_simple_heredoc_body, - STATE(4414), 1, - sym_heredoc_body, - STATE(3598), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [179313] = 4, - ACTIONS(63), 1, - sym_comment, - STATE(4079), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - ACTIONS(10431), 2, - sym__concat, - aux_sym_concatenation_token1, - [179328] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10330), 1, - aux_sym_concatenation_token1, - ACTIONS(10434), 1, - sym__concat, - STATE(4074), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [179345] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10227), 1, - anon_sym_in, - ACTIONS(10231), 1, - anon_sym_LF, - ACTIONS(10229), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [179360] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10388), 1, - sym_simple_heredoc_body, - STATE(4591), 1, - sym_heredoc_body, - STATE(3585), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [179377] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10318), 1, - anon_sym_RPAREN, - ACTIONS(10386), 1, - sym__special_character, - STATE(4130), 1, - aux_sym__literal_repeat1, - STATE(4286), 1, - aux_sym_case_item_repeat1, - [179396] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10368), 1, - sym_simple_heredoc_body, - STATE(4414), 1, - sym_heredoc_body, - STATE(3597), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [179413] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10436), 1, - anon_sym_SLASH, - ACTIONS(10438), 1, - anon_sym_RBRACE3, - STATE(4088), 1, - aux_sym_concatenation_repeat1, - ACTIONS(10330), 2, - sym__concat, - aux_sym_concatenation_token1, - [179430] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10187), 1, - anon_sym_in, - ACTIONS(10191), 1, - anon_sym_LF, - ACTIONS(10189), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [179445] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10440), 1, - anon_sym_in, - ACTIONS(10444), 1, - anon_sym_LF, - ACTIONS(10442), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [179460] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10330), 1, - aux_sym_concatenation_token1, - ACTIONS(10446), 1, - sym__concat, - STATE(4074), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [179477] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10304), 1, - aux_sym_concatenation_token1, - ACTIONS(10448), 1, - sym__concat, - STATE(4079), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1254), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [179494] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(10450), 1, - anon_sym_SEMI, - ACTIONS(10452), 1, - anon_sym_do, - STATE(3607), 1, - sym_do_group, - STATE(3608), 1, - sym_compound_statement, - [179513] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10304), 1, - aux_sym_concatenation_token1, - ACTIONS(10454), 1, - sym__concat, - STATE(4079), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1248), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [179530] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10366), 1, - sym__heredoc_body_beginning, - ACTIONS(10370), 1, - sym_simple_heredoc_body, - STATE(4564), 1, - sym_heredoc_body, - STATE(3055), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [179547] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1278), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [179557] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1332), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [179567] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10456), 1, - anon_sym_esac, - ACTIONS(10458), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10460), 1, - anon_sym_SEMI_AMP, - ACTIONS(10462), 1, - anon_sym_SEMI_SEMI_AMP, - [179583] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10464), 1, - anon_sym_esac, - ACTIONS(10466), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10468), 1, - anon_sym_SEMI_AMP, - ACTIONS(10470), 1, - anon_sym_SEMI_SEMI_AMP, - [179599] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1304), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [179609] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1300), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [179619] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10472), 1, - anon_sym_esac, - ACTIONS(10474), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10476), 1, - anon_sym_SEMI_AMP, - ACTIONS(10478), 1, - anon_sym_SEMI_SEMI_AMP, - [179635] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10480), 1, - anon_sym_esac, - ACTIONS(10482), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10484), 1, - anon_sym_SEMI_AMP, - ACTIONS(10486), 1, - anon_sym_SEMI_SEMI_AMP, - [179651] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10456), 1, - anon_sym_esac, - ACTIONS(10488), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10490), 1, - anon_sym_SEMI_AMP, - ACTIONS(10492), 1, - anon_sym_SEMI_SEMI_AMP, - [179667] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1312), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [179677] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1324), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [179687] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(10452), 1, - anon_sym_do, - STATE(3596), 1, - sym_compound_statement, - STATE(3621), 1, - sym_do_group, - [179703] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1263), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [179713] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10480), 1, - anon_sym_esac, - ACTIONS(10494), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10496), 1, - anon_sym_SEMI_AMP, - ACTIONS(10498), 1, - anon_sym_SEMI_SEMI_AMP, - [179729] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10436), 1, - anon_sym_SLASH, - ACTIONS(10438), 1, - anon_sym_RBRACE3, - ACTIONS(10500), 1, - sym__special_character, - STATE(4154), 1, - aux_sym__literal_repeat1, - [179745] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1316), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [179755] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10472), 1, - anon_sym_esac, - ACTIONS(10502), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10504), 1, - anon_sym_SEMI_AMP, - ACTIONS(10506), 1, - anon_sym_SEMI_SEMI_AMP, - [179771] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1336), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [179781] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1274), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [179791] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1296), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [179801] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10508), 1, - anon_sym_esac, - ACTIONS(10510), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10512), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [179815] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1348), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [179825] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1344), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [179835] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1282), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [179845] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1324), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [179855] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1304), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [179865] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10396), 1, - anon_sym_SLASH, - ACTIONS(10398), 1, - anon_sym_RBRACE3, - ACTIONS(10500), 1, - sym__special_character, - STATE(4154), 1, - aux_sym__literal_repeat1, - [179881] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1316), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [179891] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1340), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [179901] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1270), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [179911] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1286), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [179921] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1270), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [179931] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1332), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [179941] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10422), 1, - anon_sym_LF, - ACTIONS(10417), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [179953] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1336), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [179963] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1300), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [179973] = 5, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10429), 1, - anon_sym_do, - STATE(3037), 1, - sym_do_group, - STATE(3063), 1, - sym_compound_statement, - [179989] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10514), 1, - sym__special_character, - STATE(4130), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [180003] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1274), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [180013] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1286), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [180023] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1328), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [180033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10519), 1, - anon_sym_LF, - ACTIONS(10517), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [180045] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10521), 1, - anon_sym_esac, - ACTIONS(10523), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10525), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [180059] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1340), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [180069] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1263), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [180079] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1270), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [180089] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1270), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [180099] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10386), 1, - sym__special_character, - STATE(4130), 1, - aux_sym__literal_repeat1, - ACTIONS(10406), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [180113] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1320), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [180123] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10527), 1, - anon_sym_esac, - ACTIONS(10529), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10531), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [180137] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1320), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [180147] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1344), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [180157] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1348), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [180167] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10464), 1, - anon_sym_esac, - ACTIONS(10533), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10535), 1, - anon_sym_SEMI_AMP, - ACTIONS(10537), 1, - anon_sym_SEMI_SEMI_AMP, - [180183] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10539), 1, - anon_sym_esac, - ACTIONS(10541), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10543), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [180197] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1296), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [180207] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1328), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [180217] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(10374), 1, - anon_sym_do, - STATE(2991), 1, - sym_do_group, - STATE(3002), 1, - sym_compound_statement, - [180233] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1312), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [180243] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1282), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [180253] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1278), 4, - sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, - aux_sym_concatenation_token1, - [180263] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10545), 1, - sym__special_character, - STATE(4154), 1, - aux_sym__literal_repeat1, - ACTIONS(1357), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [180277] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10548), 1, - anon_sym_COMMA, - ACTIONS(10550), 1, - anon_sym_RPAREN, - STATE(4192), 1, - aux_sym__for_body_repeat1, - [180290] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10548), 1, - anon_sym_COMMA, - ACTIONS(10552), 1, - anon_sym_RPAREN, - STATE(4231), 1, - aux_sym__for_body_repeat1, - [180303] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10554), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [180316] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10556), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180329] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10558), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(10560), 1, - anon_sym_COMMA, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [180342] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10562), 1, - anon_sym_RPAREN_RPAREN, - STATE(4263), 1, - aux_sym__for_body_repeat1, - [180355] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10564), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180366] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10568), 1, - sym__concat, - ACTIONS(4864), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180377] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10570), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180388] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10572), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180399] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10574), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180412] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10576), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180425] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10548), 1, - anon_sym_COMMA, - ACTIONS(10578), 1, - anon_sym_RPAREN, - STATE(4231), 1, - aux_sym__for_body_repeat1, - [180438] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10580), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180449] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10582), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [180462] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10584), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180475] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10586), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180486] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10588), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [180499] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10590), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180512] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10548), 1, - anon_sym_COMMA, - ACTIONS(10592), 1, - anon_sym_RPAREN, - STATE(4167), 1, - aux_sym__for_body_repeat1, - [180525] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10594), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180536] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10596), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180549] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10598), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10531), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [180560] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10600), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180573] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10602), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180586] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10604), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180597] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10476), 1, - anon_sym_SEMI_AMP, - ACTIONS(10478), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10606), 1, - anon_sym_SEMI_SEMI, - [180610] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10608), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180621] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10308), 1, - anon_sym_RPAREN, - STATE(4280), 1, - aux_sym_case_item_repeat1, - [180634] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10610), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180645] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10612), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180658] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10614), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180669] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10616), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [180682] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10618), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180695] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10620), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180708] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5236), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(10622), 1, - anon_sym_COMMA, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180721] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10625), 1, - anon_sym_RPAREN, - ACTIONS(10627), 1, - anon_sym_PIPE, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [180734] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10548), 1, - anon_sym_COMMA, - ACTIONS(10630), 1, - anon_sym_RPAREN, - STATE(4231), 1, - aux_sym__for_body_repeat1, - [180747] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10632), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180760] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10634), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180771] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10636), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180784] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10638), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180795] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10640), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180806] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10642), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180819] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1244), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - sym__special_character, - [180828] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10644), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180839] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10646), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180850] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10648), 1, - anon_sym_RPAREN_RPAREN, - STATE(4273), 1, - aux_sym__for_body_repeat1, - [180863] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10650), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [180874] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10652), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180887] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10654), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180900] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10656), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180913] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10658), 1, - anon_sym_RPAREN_RPAREN, - STATE(4233), 1, - aux_sym__for_body_repeat1, - [180926] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10660), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180939] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10662), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180952] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10664), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [180965] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10460), 1, - anon_sym_SEMI_AMP, - ACTIONS(10462), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10666), 1, - anon_sym_SEMI_SEMI, - [180978] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10668), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [180991] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10670), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [181002] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10672), 1, - anon_sym_RPAREN_RPAREN, - STATE(4217), 1, - aux_sym__for_body_repeat1, - [181015] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10352), 1, - anon_sym_RPAREN, - STATE(4257), 1, - aux_sym_case_item_repeat1, - [181028] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10674), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [181039] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10676), 1, - anon_sym_RPAREN_RPAREN, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [181052] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10678), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181065] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10680), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181078] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10535), 1, - anon_sym_SEMI_AMP, - ACTIONS(10537), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10682), 1, - anon_sym_SEMI_SEMI, - [181091] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10484), 1, - anon_sym_SEMI_AMP, - ACTIONS(10486), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10684), 1, - anon_sym_SEMI_SEMI, - [181104] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10686), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181117] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10688), 1, - sym__concat, - ACTIONS(4797), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [181128] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10690), 1, - anon_sym_RPAREN_RPAREN, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [181141] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10692), 1, - anon_sym_RPAREN_RPAREN, - STATE(4224), 1, - aux_sym__for_body_repeat1, - [181154] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10694), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181167] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10696), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [181178] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10698), 1, - anon_sym_RPAREN_RPAREN, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [181191] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10490), 1, - anon_sym_SEMI_AMP, - ACTIONS(10492), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10700), 1, - anon_sym_SEMI_SEMI, - [181204] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10702), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181217] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10422), 1, - anon_sym_RPAREN, - ACTIONS(10704), 1, - anon_sym_COMMA, - STATE(4231), 1, - aux_sym__for_body_repeat1, - [181230] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10707), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181243] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10709), 1, - anon_sym_RPAREN_RPAREN, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [181256] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10711), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181269] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10713), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181282] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10715), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181295] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10717), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [181306] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10719), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181319] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10721), 1, - anon_sym_RPAREN_RPAREN, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [181332] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10723), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10525), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [181343] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10725), 1, - anon_sym_RPAREN_RPAREN, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [181356] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10727), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181369] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10729), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181382] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10731), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181395] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10733), 1, - sym__concat, - ACTIONS(4924), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [181406] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10735), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181419] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10737), 1, - anon_sym_RPAREN_RPAREN, - STATE(4159), 1, - aux_sym__for_body_repeat1, - [181432] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 1, - sym__special_character, - ACTIONS(1244), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [181443] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10739), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181456] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10741), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181469] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10743), 1, - anon_sym_RPAREN_RPAREN, - STATE(4228), 1, - aux_sym__for_body_repeat1, - [181482] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10745), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181495] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10747), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181508] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10749), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181521] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10751), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181534] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10753), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181547] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10755), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181560] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10757), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [181571] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10300), 1, - anon_sym_RPAREN, - ACTIONS(10302), 1, - anon_sym_PIPE, - STATE(4262), 1, - aux_sym_case_item_repeat1, - [181584] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10759), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181597] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10761), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10512), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [181608] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10763), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181621] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10765), 1, - anon_sym_RPAREN_RPAREN, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [181634] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10767), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181647] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10504), 1, - anon_sym_SEMI_AMP, - ACTIONS(10506), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10769), 1, - anon_sym_SEMI_SEMI, - [181660] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10771), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181673] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10773), 1, - anon_sym_RPAREN_RPAREN, - STATE(4239), 1, - aux_sym__for_body_repeat1, - [181686] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10775), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181699] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10496), 1, - anon_sym_SEMI_AMP, - ACTIONS(10498), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10777), 1, - anon_sym_SEMI_SEMI, - [181712] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10779), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181725] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10781), 1, - sym__concat, - ACTIONS(4932), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [181736] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10783), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181749] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10785), 1, - anon_sym_RPAREN_RPAREN, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [181762] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10787), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181775] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10789), 1, - anon_sym_SEMI_SEMI, - ACTIONS(10543), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [181786] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10791), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181799] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10793), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181812] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10548), 1, - anon_sym_COMMA, - ACTIONS(10795), 1, - anon_sym_RPAREN, - STATE(4156), 1, - aux_sym__for_body_repeat1, - [181825] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10560), 1, - anon_sym_COMMA, - ACTIONS(10797), 1, - anon_sym_RPAREN_RPAREN, - STATE(4241), 1, - aux_sym__for_body_repeat1, - [181838] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10799), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181851] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10801), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181864] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10803), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181877] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10805), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181890] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10807), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181903] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10348), 1, - anon_sym_RPAREN, - STATE(4172), 1, - aux_sym_case_item_repeat1, - [181916] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10302), 1, - anon_sym_PIPE, - ACTIONS(10809), 1, - anon_sym_RPAREN, - STATE(4191), 1, - aux_sym_case_item_repeat1, - [181929] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10422), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(10811), 1, - anon_sym_COMMA, - STATE(4287), 1, - aux_sym__for_body_repeat1, - [181942] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10814), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [181953] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10816), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181966] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10468), 1, - anon_sym_SEMI_AMP, - ACTIONS(10470), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10818), 1, - anon_sym_SEMI_SEMI, - [181979] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10820), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [181992] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10566), 1, - anon_sym_LBRACK, - ACTIONS(10822), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182003] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(10824), 1, - anon_sym_RPAREN_RPAREN, - STATE(4190), 1, - aux_sym_arithmetic_expansion_repeat1, - [182016] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8446), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1734), 1, - sym_expansion, - [182026] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10564), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182034] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1654), 1, - sym_expansion, - [182044] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10826), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(10828), 1, - aux_sym__simple_variable_name_token1, - [182054] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1320), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [182062] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1328), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [182070] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1312), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [182078] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2225), 1, - sym_expansion, - [182088] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1274), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [182096] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1163), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1561), 1, - sym_expansion, - [182106] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1336), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [182114] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1332), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [182122] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1324), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [182130] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10814), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182138] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1300), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [182146] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6614), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1422), 1, - sym_expansion, - [182156] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3455), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2007), 1, - sym_expansion, - [182166] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10634), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182174] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2810), 1, - sym_expansion, - [182184] = 3, - ACTIONS(53), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - sym_comment, - STATE(1010), 1, - sym_expansion, - [182194] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5769), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1106), 1, - sym_expansion, - [182204] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4252), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3209), 1, - sym_expansion, - [182214] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3104), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1851), 1, - sym_expansion, - [182224] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10580), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182232] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2333), 1, - sym_expansion, - [182242] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6550), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2911), 1, - sym_expansion, - [182252] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10830), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(10832), 1, - aux_sym__simple_variable_name_token1, - [182262] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10696), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182270] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10390), 1, - anon_sym_SLASH, - ACTIONS(10392), 1, - anon_sym_RBRACE3, - [182280] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1105), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1675), 1, - sym_expansion, - [182290] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(316), 1, - anon_sym_DOLLAR_LBRACE, - STATE(427), 1, - sym_expansion, - [182300] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(206), 1, - anon_sym_DOLLAR_LBRACE, - STATE(396), 1, - sym_expansion, - [182310] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6568), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1425), 1, - sym_expansion, - [182320] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10376), 1, - anon_sym_SLASH, - ACTIONS(10378), 1, - anon_sym_RBRACE3, - [182330] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5425), 1, - anon_sym_DOLLAR_LBRACE, - STATE(4133), 1, - sym_expansion, - [182340] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5643), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1966), 1, - sym_expansion, - [182350] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7061), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1308), 1, - sym_expansion, - [182360] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6494), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1791), 1, - sym_expansion, - [182370] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3703), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1953), 1, - sym_expansion, - [182380] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10422), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [182388] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6906), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3489), 1, - sym_expansion, - [182398] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10834), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(10836), 1, - aux_sym__simple_variable_name_token1, - [182408] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3964), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3104), 1, - sym_expansion, - [182418] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6052), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2428), 1, - sym_expansion, - [182428] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10394), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [182436] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10838), 1, - anon_sym_DOLLAR_LBRACE, - STATE(4299), 1, - sym_expansion, - [182446] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10519), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [182454] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5687), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2767), 1, - sym_expansion, - [182464] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5041), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182472] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5047), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182480] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2359), 1, - sym_expansion, - [182490] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7255), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1250), 1, - sym_expansion, - [182500] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6175), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3509), 1, - sym_expansion, - [182510] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6804), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3979), 1, - sym_expansion, - [182520] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10519), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [182528] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10422), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [182536] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(454), 1, - anon_sym_DOLLAR_LBRACE, - STATE(717), 1, - sym_expansion, - [182546] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10429), 1, - anon_sym_do, - STATE(3021), 1, - sym_do_group, - [182556] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10452), 1, - anon_sym_do, - STATE(3630), 1, - sym_do_group, - [182566] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3815), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2103), 1, - sym_expansion, - [182576] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5861), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1173), 1, - sym_expansion, - [182586] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7019), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3541), 1, - sym_expansion, - [182596] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10429), 1, - anon_sym_do, - STATE(3070), 1, - sym_do_group, - [182606] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6696), 1, - anon_sym_DOLLAR_LBRACE, - STATE(4149), 1, - sym_expansion, - [182616] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10674), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182624] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10670), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182632] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10650), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182640] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6211), 1, - anon_sym_DOLLAR_LBRACE, - STATE(918), 1, - sym_expansion, - [182650] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_DOLLAR_LBRACE, - STATE(367), 1, - sym_expansion, - [182660] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10638), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182668] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10610), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182676] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6090), 1, - anon_sym_DOLLAR_LBRACE, - STATE(766), 1, - sym_expansion, - [182686] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4797), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182694] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10572), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182702] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8173), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2278), 1, - sym_expansion, - [182712] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10570), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182720] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4864), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182728] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7569), 1, - anon_sym_DOLLAR_LBRACE, - STATE(961), 1, - sym_expansion, - [182738] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10594), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182746] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10604), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182754] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10840), 1, - anon_sym_SLASH, - ACTIONS(10842), 1, - anon_sym_RBRACE3, - [182764] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5723), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1234), 1, - sym_expansion, - [182774] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10646), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182782] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6532), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1077), 1, - sym_expansion, - [182792] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5803), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1249), 1, - sym_expansion, - [182802] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10822), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182810] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4068), 1, - anon_sym_RBRACE3, - ACTIONS(10844), 1, - anon_sym_COLON, - [182820] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6768), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2808), 1, - sym_expansion, - [182830] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10717), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182838] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10640), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182846] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10846), 1, - anon_sym_SLASH, - ACTIONS(10848), 1, - anon_sym_RBRACE3, - [182856] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(574), 1, - anon_sym_DOLLAR_LBRACE, - STATE(847), 1, - sym_expansion, - [182866] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10614), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182874] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10757), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182882] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10452), 1, - anon_sym_do, - STATE(3609), 1, - sym_do_group, - [182892] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(623), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1903), 1, - sym_expansion, - [182902] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10374), 1, - anon_sym_do, - STATE(3003), 1, - sym_do_group, - [182912] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10586), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182920] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6012), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2769), 1, - sym_expansion, - [182930] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(372), 1, - anon_sym_DOLLAR_LBRACE, - STATE(980), 1, - sym_expansion, - [182940] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10644), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182948] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5923), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1085), 1, - sym_expansion, - [182958] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10608), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [182966] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5833), 1, - anon_sym_DOLLAR_LBRACE, - STATE(998), 1, - sym_expansion, - [182976] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4130), 1, - anon_sym_RBRACE3, - ACTIONS(10850), 1, - anon_sym_COLON, - [182986] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8516), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2113), 1, - sym_expansion, - [182996] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7207), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1112), 1, - sym_expansion, - [183006] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10374), 1, - anon_sym_do, - STATE(3009), 1, - sym_do_group, - [183016] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6440), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1301), 1, - sym_expansion, - [183026] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10852), 1, - anon_sym_RBRACE2, - [183033] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10854), 1, - aux_sym_brace_expression_token1, - [183040] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10856), 1, - anon_sym_LF, - [183047] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10858), 1, - anon_sym_RBRACE3, - [183054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10860), 1, - anon_sym_LF, - [183061] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10862), 1, - anon_sym_BQUOTE, - [183068] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10864), 1, - anon_sym_BQUOTE, - [183075] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10866), 1, - anon_sym_esac, - [183082] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10868), 1, - anon_sym_esac, - [183089] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10870), 1, - anon_sym_fi, - [183096] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10872), 1, - anon_sym_RPAREN, - [183103] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10874), 1, - sym_heredoc_end, - [183110] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10876), 1, - sym_heredoc_end, - [183117] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10862), 1, - anon_sym_RPAREN, - [183124] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10878), 1, - anon_sym_RBRACE3, - [183131] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10880), 1, - anon_sym_RBRACE3, - [183138] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10882), 1, - anon_sym_esac, - [183145] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10306), 1, - anon_sym_fi, - [183152] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10884), 1, - anon_sym_BQUOTE, - [183159] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10886), 1, - anon_sym_esac, - [183166] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10888), 1, - anon_sym_BQUOTE, - [183173] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10890), 1, - anon_sym_RBRACE3, - [183180] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10342), 1, - anon_sym_fi, - [183187] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10892), 1, - anon_sym_RBRACE3, - [183194] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10894), 1, - aux_sym_brace_expression_token1, - [183201] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10884), 1, - anon_sym_RPAREN, - [183208] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10896), 1, - anon_sym_RBRACE2, - [183215] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10898), 1, - anon_sym_RBRACE3, - [183222] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_esac, - [183229] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10902), 1, - anon_sym_RBRACE3, - [183236] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10904), 1, - anon_sym_BQUOTE, - [183243] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10906), 1, - anon_sym_esac, - [183250] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10908), 1, - anon_sym_esac, - [183257] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10910), 1, - anon_sym_BQUOTE, - [183264] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10298), 1, - anon_sym_fi, - [183271] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10912), 1, - anon_sym_RBRACE3, - [183278] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10904), 1, - anon_sym_RPAREN, - [183285] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10914), 1, - anon_sym_RBRACE3, - [183292] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10916), 1, - anon_sym_RBRACE3, - [183299] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10918), 1, - anon_sym_esac, - [183306] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10920), 1, - anon_sym_RBRACE2, - [183313] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6994), 1, - anon_sym_RBRACK, - [183320] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10922), 1, - anon_sym_RBRACE3, - [183327] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10924), 1, - anon_sym_BQUOTE, - [183334] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10926), 1, - anon_sym_BQUOTE, - [183341] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10928), 1, - anon_sym_BQUOTE, - [183348] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10924), 1, - anon_sym_RPAREN, - [183355] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10930), 1, - aux_sym_brace_expression_token1, - [183362] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10932), 1, - anon_sym_RBRACE3, - [183369] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10934), 1, - anon_sym_RBRACE3, - [183376] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6986), 1, - anon_sym_RBRACK, - [183383] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10936), 1, - anon_sym_RBRACE3, - [183390] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10938), 1, - anon_sym_RBRACE3, - [183397] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10940), 1, - anon_sym_BQUOTE, - [183404] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10942), 1, - anon_sym_BQUOTE, - [183411] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10944), 1, - anon_sym_RBRACE3, - [183418] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10946), 1, - anon_sym_RPAREN, - [183425] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10948), 1, - aux_sym_brace_expression_token1, - [183432] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10940), 1, - anon_sym_RPAREN, - [183439] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10950), 1, - anon_sym_BQUOTE, - [183446] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10952), 1, - anon_sym_RBRACE3, - [183453] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10954), 1, - anon_sym_RBRACE3, - [183460] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10946), 1, - anon_sym_BQUOTE, - [183467] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10956), 1, - anon_sym_RPAREN, - [183474] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10958), 1, - aux_sym_brace_expression_token1, - [183481] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10960), 1, - anon_sym_RPAREN, - [183488] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10962), 1, - anon_sym_RBRACE3, - [183495] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10964), 1, - aux_sym_brace_expression_token1, - [183502] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10966), 1, - anon_sym_BQUOTE, - [183509] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10968), 1, - anon_sym_BQUOTE, - [183516] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10966), 1, - anon_sym_RPAREN, - [183523] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10970), 1, - anon_sym_RBRACE3, - [183530] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10972), 1, - anon_sym_RBRACE3, - [183537] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10974), 1, - anon_sym_RPAREN, - [183544] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10976), 1, - anon_sym_RBRACE3, - [183551] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10978), 1, - anon_sym_RBRACE3, - [183558] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10980), 1, - anon_sym_RBRACE3, - [183565] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10982), 1, - aux_sym_brace_expression_token1, - [183572] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10984), 1, - anon_sym_RBRACE2, - [183579] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10986), 1, - anon_sym_RBRACE3, - [183586] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10988), 1, - sym_word, - [183593] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10990), 1, - anon_sym_RPAREN, - [183600] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10992), 1, - anon_sym_RPAREN, - [183607] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10994), 1, - anon_sym_BQUOTE, - [183614] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10996), 1, - anon_sym_BQUOTE, - [183621] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10998), 1, - anon_sym_RBRACE3, - [183628] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11000), 1, - aux_sym_brace_expression_token1, - [183635] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11002), 1, - anon_sym_BQUOTE, - [183642] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10996), 1, - anon_sym_RPAREN, - [183649] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11004), 1, - anon_sym_BQUOTE, - [183656] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11006), 1, - anon_sym_RBRACE2, - [183663] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11008), 1, - anon_sym_RBRACE2, - [183670] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6998), 1, - anon_sym_RBRACK, - [183677] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6996), 1, - anon_sym_RBRACK, - [183684] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11010), 1, - anon_sym_RPAREN, - [183691] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11012), 1, - aux_sym_brace_expression_token1, - [183698] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11014), 1, - anon_sym_RBRACE3, - [183705] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11016), 1, - anon_sym_BQUOTE, - [183712] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10994), 1, - anon_sym_RPAREN, - [183719] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11018), 1, - anon_sym_RBRACE2, - [183726] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11020), 1, - anon_sym_RBRACE3, - [183733] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11022), 1, - anon_sym_RBRACE3, - [183740] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11024), 1, - anon_sym_RPAREN, - [183747] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11026), 1, - sym_word, - [183754] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11028), 1, - aux_sym_brace_expression_token1, - [183761] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11030), 1, - anon_sym_BQUOTE, - [183768] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11032), 1, - anon_sym_BQUOTE, - [183775] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11030), 1, - anon_sym_RPAREN, - [183782] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11010), 1, - anon_sym_BQUOTE, - [183789] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11034), 1, - anon_sym_RBRACE3, - [183796] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11036), 1, - anon_sym_RBRACE3, - [183803] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11038), 1, - anon_sym_RBRACE2, - [183810] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6136), 1, - anon_sym_RBRACE3, - [183817] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11040), 1, - aux_sym_brace_expression_token1, - [183824] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11042), 1, - anon_sym_RBRACE3, - [183831] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11044), 1, - anon_sym_RPAREN, - [183838] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11046), 1, - anon_sym_LF, - [183845] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11048), 1, - anon_sym_BQUOTE, - [183852] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11050), 1, - anon_sym_RPAREN, - [183859] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11052), 1, - anon_sym_BQUOTE, - [183866] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11054), 1, - anon_sym_RPAREN, - [183873] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5992), 1, - anon_sym_RBRACE3, - [183880] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11056), 1, - aux_sym_brace_expression_token1, - [183887] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11058), 1, - anon_sym_RBRACE3, - [183894] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11048), 1, - anon_sym_RPAREN, - [183901] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11060), 1, - anon_sym_RPAREN, - [183908] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11062), 1, - anon_sym_BQUOTE, - [183915] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11064), 1, - anon_sym_BQUOTE, - [183922] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11066), 1, - anon_sym_RBRACE3, - [183929] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6882), 1, - anon_sym_RBRACK, - [183936] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6874), 1, - anon_sym_RBRACK, - [183943] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11068), 1, - aux_sym_brace_expression_token1, - [183950] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11060), 1, - anon_sym_BQUOTE, - [183957] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11070), 1, - anon_sym_RBRACE2, - [183964] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11072), 1, - anon_sym_RBRACE3, - [183971] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11074), 1, - anon_sym_RPAREN, - [183978] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11076), 1, - anon_sym_BQUOTE, - [183985] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11078), 1, - anon_sym_BQUOTE, - [183992] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11080), 1, - sym_heredoc_start, - [183999] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11082), 1, - anon_sym_RBRACE2, - [184006] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11084), 1, - aux_sym_brace_expression_token1, - [184013] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11086), 1, - anon_sym_RPAREN, - [184020] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11076), 1, - anon_sym_RPAREN, - [184027] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11088), 1, - anon_sym_then, - [184034] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11090), 1, - anon_sym_RBRACE3, - [184041] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11092), 1, - anon_sym_RBRACE3, - [184048] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11094), 1, - sym_heredoc_end, - [184055] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11096), 1, - anon_sym_RBRACE2, - [184062] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11098), 1, - anon_sym_RBRACE2, - [184069] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11100), 1, - aux_sym_brace_expression_token1, - [184076] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11102), 1, - anon_sym_RBRACE2, - [184083] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11104), 1, - anon_sym_RBRACE3, - [184090] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11106), 1, - anon_sym_RPAREN, - [184097] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11108), 1, - anon_sym_RBRACE3, - [184104] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11110), 1, - anon_sym_BQUOTE, - [184111] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11112), 1, - anon_sym_BQUOTE, - [184118] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11114), 1, - anon_sym_RPAREN, - [184125] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11116), 1, - aux_sym_brace_expression_token1, - [184132] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11110), 1, - anon_sym_RPAREN, - [184139] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11118), 1, - anon_sym_RBRACE3, - [184146] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11120), 1, - anon_sym_RBRACE3, - [184153] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11122), 1, - sym_heredoc_end, - [184160] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11124), 1, - anon_sym_RBRACE3, - [184167] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11126), 1, - anon_sym_RBRACE2, - [184174] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11128), 1, - aux_sym_brace_expression_token1, - [184181] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11130), 1, - aux_sym_brace_expression_token1, - [184188] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11132), 1, - anon_sym_RBRACE3, - [184195] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11134), 1, - anon_sym_RPAREN, - [184202] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11136), 1, - anon_sym_esac, - [184209] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11138), 1, - anon_sym_esac, - [184216] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11140), 1, - anon_sym_BQUOTE, - [184223] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11142), 1, - anon_sym_BQUOTE, - [184230] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11144), 1, - anon_sym_RPAREN_RPAREN, - [184237] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11146), 1, - aux_sym_brace_expression_token1, - [184244] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11148), 1, - anon_sym_RBRACE3, - [184251] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11150), 1, - anon_sym_esac, - [184258] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11152), 1, - sym__regex_no_slash, - [184265] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11154), 1, - anon_sym_esac, - [184272] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11156), 1, - sym_regex, - [184279] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11140), 1, - anon_sym_RPAREN, - [184286] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11158), 1, - anon_sym_esac, - [184293] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11160), 1, - aux_sym_brace_expression_token1, - [184300] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11162), 1, - anon_sym_fi, - [184307] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11164), 1, - anon_sym_RPAREN, - [184314] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11166), 1, - anon_sym_RBRACE3, - [184321] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11168), 1, - sym__regex_no_slash, - [184328] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11170), 1, - anon_sym_BQUOTE, - [184335] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11172), 1, - aux_sym_brace_expression_token1, - [184342] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11174), 1, - sym_heredoc_end, - [184349] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11176), 1, - sym_regex, - [184356] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11178), 1, - sym_heredoc_end, - [184363] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11164), 1, - anon_sym_BQUOTE, - [184370] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11180), 1, - anon_sym_RPAREN, - [184377] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11182), 1, - aux_sym_brace_expression_token1, - [184384] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11184), 1, - anon_sym_RPAREN, - [184391] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11186), 1, - anon_sym_RBRACE2, - [184398] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11188), 1, - anon_sym_RBRACE3, - [184405] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11190), 1, - anon_sym_esac, - [184412] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11192), 1, - anon_sym_esac, - [184419] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11194), 1, - aux_sym_brace_expression_token1, - [184426] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11196), 1, - anon_sym_RPAREN, - [184433] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10292), 1, - anon_sym_fi, - [184440] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11198), 1, - anon_sym_BQUOTE, - [184447] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11200), 1, - anon_sym_BQUOTE, - [184454] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11198), 1, - anon_sym_RPAREN, - [184461] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11202), 1, - aux_sym_brace_expression_token1, - [184468] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11204), 1, - anon_sym_BQUOTE, - [184475] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11206), 1, - anon_sym_RBRACE3, - [184482] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11208), 1, - anon_sym_RBRACE3, - [184489] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11210), 1, - anon_sym_in, - [184496] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11212), 1, - anon_sym_RBRACE2, - [184503] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11214), 1, - aux_sym_brace_expression_token1, - [184510] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11216), 1, - anon_sym_RBRACE3, - [184517] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11218), 1, - anon_sym_RPAREN, - [184524] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11220), 1, - anon_sym_esac, - [184531] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11222), 1, - anon_sym_esac, - [184538] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11224), 1, - anon_sym_BQUOTE, - [184545] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11226), 1, - aux_sym_brace_expression_token1, - [184552] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10310), 1, - anon_sym_fi, - [184559] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11228), 1, - anon_sym_in, - [184566] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11230), 1, - anon_sym_BQUOTE, - [184573] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11232), 1, - anon_sym_in, - [184580] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11234), 1, - anon_sym_RBRACE3, - [184587] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11236), 1, - aux_sym_brace_expression_token1, - [184594] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11062), 1, - anon_sym_RPAREN, - [184601] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11238), 1, - anon_sym_in, - [184608] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11240), 1, - anon_sym_RBRACE2, - [184615] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6972), 1, - anon_sym_RBRACK, - [184622] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6970), 1, - anon_sym_RBRACK, - [184629] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11242), 1, - aux_sym_brace_expression_token1, - [184636] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11244), 1, - anon_sym_RBRACE3, - [184643] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10960), 1, - anon_sym_BQUOTE, - [184650] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11246), 1, - anon_sym_RBRACE3, - [184657] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11248), 1, - anon_sym_RBRACE3, - [184664] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11250), 1, - anon_sym_RBRACE2, - [184671] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11252), 1, - aux_sym_brace_expression_token1, - [184678] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11254), 1, - anon_sym_then, - [184685] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10350), 1, - anon_sym_fi, - [184692] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11256), 1, - anon_sym_RBRACE3, - [184699] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11258), 1, - anon_sym_RPAREN, - [184706] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11260), 1, - anon_sym_BQUOTE, - [184713] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11262), 1, - aux_sym_brace_expression_token1, - [184720] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11264), 1, - anon_sym_BQUOTE, - [184727] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11204), 1, - anon_sym_RPAREN, - [184734] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4130), 1, - anon_sym_RBRACE3, - [184741] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11266), 1, - anon_sym_RPAREN, - [184748] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11268), 1, - anon_sym_RPAREN, - [184755] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11270), 1, - aux_sym_brace_expression_token1, - [184762] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11272), 1, - anon_sym_BQUOTE, - [184769] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11274), 1, - anon_sym_BQUOTE, - [184776] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11260), 1, - anon_sym_RPAREN, - [184783] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11276), 1, - anon_sym_RPAREN_RPAREN, - [184790] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11272), 1, - anon_sym_RPAREN, - [184797] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11278), 1, - aux_sym_brace_expression_token1, - [184804] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11280), 1, - anon_sym_RBRACE3, - [184811] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11282), 1, - anon_sym_RPAREN, - [184818] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11284), 1, - anon_sym_RBRACE2, - [184825] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11286), 1, - aux_sym_brace_expression_token1, - [184832] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11288), 1, - anon_sym_RBRACE3, - [184839] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11290), 1, - aux_sym_brace_expression_token1, - [184846] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11266), 1, - anon_sym_BQUOTE, - [184853] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11292), 1, - anon_sym_RPAREN, - [184860] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4068), 1, - anon_sym_RBRACE3, - [184867] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11294), 1, - anon_sym_RPAREN, - [184874] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11296), 1, - anon_sym_RPAREN, - [184881] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11298), 1, - aux_sym_brace_expression_token1, - [184888] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11300), 1, - anon_sym_esac, - [184895] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11302), 1, - anon_sym_RPAREN, - [184902] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11304), 1, - anon_sym_RBRACE3, - [184909] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11306), 1, - anon_sym_RPAREN, - [184916] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11308), 1, - anon_sym_LF, - [184923] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11310), 1, - aux_sym_brace_expression_token1, - [184930] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11312), 1, - anon_sym_RBRACE3, - [184937] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11314), 1, - anon_sym_BQUOTE, - [184944] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11316), 1, - anon_sym_BQUOTE, - [184951] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11314), 1, - anon_sym_RPAREN, - [184958] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11318), 1, - anon_sym_RBRACE3, - [184965] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11320), 1, - aux_sym_brace_expression_token1, - [184972] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11322), 1, - anon_sym_RBRACE3, - [184979] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11324), 1, - anon_sym_RBRACE2, - [184986] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11326), 1, - anon_sym_RBRACE2, - [184993] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11328), 1, - anon_sym_RBRACE2, - [185000] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11330), 1, - anon_sym_RBRACE3, - [185007] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11332), 1, - aux_sym_brace_expression_token1, - [185014] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11334), 1, - anon_sym_esac, - [185021] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11336), 1, - anon_sym_RPAREN, - [185028] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11338), 1, - anon_sym_BQUOTE, - [185035] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11340), 1, - anon_sym_BQUOTE, - [185042] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11342), 1, - sym_heredoc_start, - [185049] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11344), 1, - aux_sym_brace_expression_token1, - [185056] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11346), 1, - anon_sym_RBRACE3, - [185063] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11338), 1, - anon_sym_RPAREN, - [185070] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11348), 1, - anon_sym_RPAREN, - [185077] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11350), 1, - anon_sym_RBRACE3, - [185084] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11352), 1, - anon_sym_BQUOTE, - [185091] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11354), 1, - aux_sym_brace_expression_token1, - [185098] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11356), 1, - anon_sym_RBRACE3, - [185105] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11358), 1, - anon_sym_BQUOTE, - [185112] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11360), 1, - anon_sym_LF, - [185119] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11352), 1, - anon_sym_RPAREN, - [185126] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11362), 1, - anon_sym_RPAREN, - [185133] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11364), 1, - aux_sym_brace_expression_token1, - [185140] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11366), 1, - anon_sym_RBRACE3, - [185147] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11368), 1, - anon_sym_RBRACE3, - [185154] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11370), 1, - anon_sym_RBRACE3, - [185161] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11372), 1, - anon_sym_RBRACE2, - [185168] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11374), 1, - anon_sym_RBRACE3, - [185175] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11376), 1, - aux_sym_brace_expression_token1, - [185182] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11378), 1, - anon_sym_esac, - [185189] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11380), 1, - anon_sym_RBRACE3, - [185196] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11382), 1, - anon_sym_RPAREN, - [185203] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11384), 1, - anon_sym_esac, - [185210] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11386), 1, - anon_sym_BQUOTE, - [185217] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11388), 1, - aux_sym_brace_expression_token1, - [185224] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11390), 1, - anon_sym_BQUOTE, - [185231] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11386), 1, - anon_sym_RPAREN, - [185238] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11392), 1, - anon_sym_BQUOTE, - [185245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11394), 1, - anon_sym_LF, - [185252] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11396), 1, - sym_heredoc_end, - [185259] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11398), 1, - anon_sym_RBRACE3, - [185266] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11400), 1, - anon_sym_RBRACE3, - [185273] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11402), 1, - sym_heredoc_end, - [185280] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11362), 1, - anon_sym_BQUOTE, - [185287] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11404), 1, - anon_sym_RPAREN, - [185294] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11406), 1, - anon_sym_LF, - [185301] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11408), 1, - aux_sym_brace_expression_token1, - [185308] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11410), 1, - anon_sym_RPAREN, - [185315] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11412), 1, - anon_sym_RBRACE3, - [185322] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11414), 1, - anon_sym_RBRACE2, - [185329] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11416), 1, - anon_sym_RBRACE3, - [185336] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11418), 1, - anon_sym_RPAREN, - [185343] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11420), 1, - aux_sym_brace_expression_token1, - [185350] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11422), 1, - anon_sym_BQUOTE, - [185357] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11424), 1, - anon_sym_BQUOTE, - [185364] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11426), 1, - anon_sym_RPAREN, - [185371] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11422), 1, - anon_sym_RPAREN, - [185378] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11428), 1, - anon_sym_RBRACE3, - [185385] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11430), 1, - aux_sym_brace_expression_token1, - [185392] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11432), 1, - anon_sym_RBRACE3, - [185399] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11434), 1, - anon_sym_RBRACE2, - [185406] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11436), 1, - anon_sym_esac, - [185413] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11438), 1, - anon_sym_BQUOTE, - [185420] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11440), 1, - anon_sym_RBRACE2, - [185427] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11442), 1, - aux_sym_brace_expression_token1, - [185434] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11444), 1, - anon_sym_RBRACE3, - [185441] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11446), 1, - anon_sym_fi, - [185448] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11448), 1, - anon_sym_RPAREN, - [185455] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11450), 1, - anon_sym_BQUOTE, - [185462] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11452), 1, - anon_sym_BQUOTE, - [185469] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11454), 1, - anon_sym_LF, - [185476] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11296), 1, - anon_sym_BQUOTE, - [185483] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11450), 1, - anon_sym_RPAREN, - [185490] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11456), 1, - anon_sym_RBRACE2, - [185497] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11458), 1, - anon_sym_RBRACE3, - [185504] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11460), 1, - anon_sym_RBRACE3, - [185511] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11426), 1, - anon_sym_BQUOTE, - [185518] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11462), 1, - anon_sym_RPAREN, - [185525] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11464), 1, - anon_sym_then, - [185532] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11466), 1, - anon_sym_RBRACE3, - [185539] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11468), 1, - anon_sym_RBRACE3, - [185546] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11470), 1, - anon_sym_RPAREN, - [185553] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11472), 1, - anon_sym_RPAREN, - [185560] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11474), 1, - anon_sym_BQUOTE, - [185567] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11476), 1, - anon_sym_BQUOTE, - [185574] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11478), 1, - anon_sym_RPAREN, - [185581] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10836), 1, - aux_sym__simple_variable_name_token1, - [185588] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11480), 1, - anon_sym_BQUOTE, - [185595] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11482), 1, - anon_sym_esac, - [185602] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11484), 1, - anon_sym_DOT_DOT, - [185609] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11474), 1, - anon_sym_RPAREN, - [185616] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11462), 1, - anon_sym_BQUOTE, - [185623] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11486), 1, - anon_sym_RBRACE3, - [185630] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11488), 1, - sym_heredoc_start, - [185637] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11490), 1, - anon_sym_RPAREN, - [185644] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11492), 1, - anon_sym_BQUOTE, - [185651] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11494), 1, - anon_sym_RBRACE2, - [185658] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11496), 1, - anon_sym_RBRACE3, - [185665] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11498), 1, - anon_sym_RBRACE3, - [185672] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11500), 1, - sym_heredoc_start, - [185679] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11502), 1, - anon_sym_RPAREN, - [185686] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11504), 1, - anon_sym_BQUOTE, - [185693] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11506), 1, - anon_sym_BQUOTE, - [185700] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11508), 1, - anon_sym_BQUOTE, - [185707] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11504), 1, - anon_sym_RPAREN, - [185714] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11510), 1, - anon_sym_RBRACE2, - [185721] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11512), 1, - anon_sym_RBRACE3, - [185728] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11514), 1, - anon_sym_RBRACE2, - [185735] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11516), 1, - anon_sym_RBRACE3, - [185742] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11518), 1, - anon_sym_RBRACE2, - [185749] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11520), 1, - anon_sym_RBRACE3, - [185756] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11522), 1, - anon_sym_RPAREN, - [185763] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11524), 1, - anon_sym_BQUOTE, - [185770] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11526), 1, - anon_sym_BQUOTE, - [185777] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11524), 1, - anon_sym_RPAREN, - [185784] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11528), 1, - anon_sym_RBRACE3, - [185791] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11530), 1, - anon_sym_RBRACE3, - [185798] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11532), 1, - anon_sym_RBRACE2, - [185805] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11534), 1, - anon_sym_RPAREN, - [185812] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11536), 1, - anon_sym_RBRACE2, - [185819] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11538), 1, - anon_sym_RBRACE3, - [185826] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11540), 1, - anon_sym_RPAREN, - [185833] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11542), 1, - anon_sym_BQUOTE, - [185840] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11544), 1, - anon_sym_BQUOTE, - [185847] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11542), 1, - anon_sym_RPAREN, - [185854] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11546), 1, - anon_sym_DOT_DOT, - [185861] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11548), 1, - anon_sym_BQUOTE, - [185868] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11550), 1, - anon_sym_RBRACE3, - [185875] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11534), 1, - anon_sym_BQUOTE, - [185882] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11552), 1, - anon_sym_RPAREN, - [185889] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11554), 1, - anon_sym_RBRACE2, - [185896] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11556), 1, - anon_sym_RBRACE3, - [185903] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11558), 1, - anon_sym_RBRACE2, - [185910] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11560), 1, - anon_sym_RBRACE3, - [185917] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11562), 1, - anon_sym_RPAREN, - [185924] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11564), 1, - anon_sym_BQUOTE, - [185931] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11566), 1, - anon_sym_BQUOTE, - [185938] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11564), 1, - anon_sym_RPAREN, - [185945] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11568), 1, - anon_sym_RBRACE3, - [185952] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11570), 1, - anon_sym_RBRACE3, - [185959] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11572), 1, - anon_sym_RBRACE2, - [185966] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11574), 1, - anon_sym_in, - [185973] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11576), 1, - anon_sym_RBRACE2, - [185980] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11578), 1, - anon_sym_RBRACE3, - [185987] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11580), 1, - anon_sym_RPAREN, - [185994] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11582), 1, - anon_sym_BQUOTE, - [186001] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11584), 1, - anon_sym_BQUOTE, - [186008] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11586), 1, - anon_sym_RBRACE3, - [186015] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11588), 1, - anon_sym_in, - [186022] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11582), 1, - anon_sym_RPAREN, - [186029] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11590), 1, - anon_sym_RBRACE3, - [186036] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11592), 1, - anon_sym_RPAREN_RPAREN, - [186043] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11594), 1, - anon_sym_RBRACE2, - [186050] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11596), 1, - anon_sym_RBRACE3, - [186057] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11598), 1, - aux_sym_brace_expression_token1, - [186064] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11600), 1, - anon_sym_RPAREN, - [186071] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11602), 1, - anon_sym_BQUOTE, - [186078] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11604), 1, - anon_sym_BQUOTE, - [186085] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11602), 1, - anon_sym_RPAREN, - [186092] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11606), 1, - anon_sym_RBRACE3, - [186099] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3360), 1, - anon_sym_then, - [186106] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11608), 1, - anon_sym_RPAREN, - [186113] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10832), 1, - aux_sym__simple_variable_name_token1, - [186120] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11610), 1, - anon_sym_RBRACE3, - [186127] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11612), 1, - anon_sym_RPAREN, - [186134] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11614), 1, - anon_sym_DOT_DOT, - [186141] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11616), 1, - anon_sym_RBRACE3, - [186148] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11618), 1, - anon_sym_BQUOTE, - [186155] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11620), 1, - anon_sym_BQUOTE, - [186162] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11622), 1, - sym_heredoc_start, - [186169] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11612), 1, - anon_sym_BQUOTE, - [186176] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11624), 1, - anon_sym_RPAREN, - [186183] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11626), 1, - anon_sym_RBRACE2, - [186190] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11628), 1, - anon_sym_RBRACE3, - [186197] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11630), 1, - sym_heredoc_start, - [186204] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11632), 1, - anon_sym_RPAREN, - [186211] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11634), 1, - anon_sym_BQUOTE, - [186218] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11636), 1, - anon_sym_BQUOTE, - [186225] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11634), 1, - anon_sym_RPAREN, - [186232] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11638), 1, - anon_sym_RBRACE3, - [186239] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11640), 1, - anon_sym_RBRACE3, - [186246] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11642), 1, - anon_sym_RBRACE2, - [186253] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11644), 1, - anon_sym_RPAREN, - [186260] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11646), 1, - anon_sym_BQUOTE, - [186267] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11648), 1, - anon_sym_esac, - [186274] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11650), 1, - anon_sym_RBRACE2, - [186281] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11652), 1, - anon_sym_RBRACE3, - [186288] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11654), 1, - anon_sym_RPAREN, - [186295] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11656), 1, - anon_sym_BQUOTE, - [186302] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11658), 1, - anon_sym_BQUOTE, - [186309] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11656), 1, - anon_sym_RPAREN, - [186316] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11660), 1, - ts_builtin_sym_end, - [186323] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11662), 1, - ts_builtin_sym_end, - [186330] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11664), 1, - anon_sym_RBRACE3, - [186337] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11620), 1, - anon_sym_RPAREN, - [186344] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11666), 1, - anon_sym_RBRACE3, - [186351] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11668), 1, - anon_sym_RBRACE3, - [186358] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11670), 1, - anon_sym_RPAREN, - [186365] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11672), 1, - anon_sym_RBRACE2, - [186372] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11674), 1, - anon_sym_RBRACE3, - [186379] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11676), 1, - anon_sym_RPAREN, - [186386] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11678), 1, - anon_sym_BQUOTE, - [186393] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11680), 1, - anon_sym_BQUOTE, - [186400] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11682), 1, - anon_sym_BQUOTE, - [186407] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11678), 1, - anon_sym_RPAREN, - [186414] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11670), 1, - anon_sym_BQUOTE, - [186421] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11684), 1, - anon_sym_RBRACE3, - [186428] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11686), 1, - anon_sym_RPAREN, - [186435] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11688), 1, - anon_sym_RBRACE2, - [186442] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11690), 1, - anon_sym_RBRACE3, - [186449] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11692), 1, - anon_sym_RBRACE2, - [186456] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11694), 1, - anon_sym_RBRACE2, - [186463] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11696), 1, - anon_sym_RBRACE3, - [186470] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11698), 1, - anon_sym_RPAREN, - [186477] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11700), 1, - sym_word, - [186484] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11702), 1, - anon_sym_BQUOTE, - [186491] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11704), 1, - anon_sym_BQUOTE, - [186498] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11702), 1, - anon_sym_RPAREN, - [186505] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11706), 1, - anon_sym_RBRACE3, - [186512] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11708), 1, - anon_sym_BQUOTE, - [186519] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11710), 1, - anon_sym_DOT_DOT, - [186526] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11712), 1, - anon_sym_then, - [186533] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11714), 1, - anon_sym_RBRACE3, - [186540] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11716), 1, - sym_heredoc_start, - [186547] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11718), 1, - anon_sym_RBRACE3, - [186554] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11720), 1, - anon_sym_RBRACE3, - [186561] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11722), 1, - anon_sym_RBRACE2, - [186568] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11724), 1, - anon_sym_RBRACE3, - [186575] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11726), 1, - sym_heredoc_start, - [186582] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11728), 1, - anon_sym_RPAREN, - [186589] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11730), 1, - anon_sym_RPAREN, - [186596] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11732), 1, - anon_sym_RBRACE2, - [186603] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11734), 1, - anon_sym_RBRACE3, - [186610] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11736), 1, - anon_sym_BQUOTE, - [186617] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11738), 1, - anon_sym_RBRACE3, - [186624] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11618), 1, - anon_sym_RPAREN, - [186631] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11740), 1, - anon_sym_RPAREN, - [186638] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11742), 1, - anon_sym_RBRACE3, - [186645] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11744), 1, - anon_sym_DOT_DOT, - [186652] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11746), 1, - anon_sym_BQUOTE, - [186659] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11740), 1, - anon_sym_BQUOTE, - [186666] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11748), 1, - anon_sym_BQUOTE, - [186673] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11750), 1, - anon_sym_BQUOTE, - [186680] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11752), 1, - anon_sym_RPAREN, - [186687] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11754), 1, - anon_sym_RBRACE2, - [186694] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11756), 1, - anon_sym_RBRACE3, - [186701] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11758), 1, - sym_word, - [186708] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11760), 1, - anon_sym_RPAREN, - [186715] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11730), 1, - anon_sym_BQUOTE, - [186722] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11762), 1, - anon_sym_RPAREN, - [186729] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11764), 1, - anon_sym_BQUOTE, - [186736] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1316), 1, - anon_sym_RBRACE3, - [186743] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11766), 1, - anon_sym_DOT_DOT, - [186750] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11768), 1, - anon_sym_DOT_DOT, - [186757] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11770), 1, - anon_sym_DOT_DOT, - [186764] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11772), 1, - anon_sym_DOT_DOT, - [186771] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11774), 1, - anon_sym_DOT_DOT, - [186778] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11776), 1, - anon_sym_DOT_DOT, - [186785] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11778), 1, - anon_sym_DOT_DOT, - [186792] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11780), 1, - anon_sym_DOT_DOT, - [186799] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11782), 1, - anon_sym_DOT_DOT, - [186806] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11784), 1, - anon_sym_DOT_DOT, - [186813] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11786), 1, - anon_sym_DOT_DOT, - [186820] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11788), 1, - anon_sym_DOT_DOT, - [186827] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11790), 1, - anon_sym_DOT_DOT, - [186834] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11792), 1, - anon_sym_DOT_DOT, - [186841] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11794), 1, - anon_sym_DOT_DOT, - [186848] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11796), 1, - anon_sym_DOT_DOT, - [186855] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11798), 1, - anon_sym_DOT_DOT, - [186862] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11800), 1, - anon_sym_DOT_DOT, - [186869] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11802), 1, - anon_sym_DOT_DOT, - [186876] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11804), 1, - anon_sym_DOT_DOT, - [186883] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11806), 1, - anon_sym_DOT_DOT, - [186890] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11808), 1, - anon_sym_DOT_DOT, - [186897] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11810), 1, - anon_sym_DOT_DOT, - [186904] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11812), 1, - anon_sym_DOT_DOT, - [186911] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11814), 1, - anon_sym_DOT_DOT, - [186918] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11816), 1, - anon_sym_DOT_DOT, - [186925] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11818), 1, - anon_sym_DOT_DOT, - [186932] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11820), 1, - anon_sym_DOT_DOT, - [186939] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11822), 1, - anon_sym_DOT_DOT, - [186946] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11824), 1, - anon_sym_DOT_DOT, - [186953] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11826), 1, - anon_sym_DOT_DOT, - [186960] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11828), 1, - anon_sym_DOT_DOT, - [186967] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11830), 1, - anon_sym_DOT_DOT, - [186974] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11832), 1, - anon_sym_DOT_DOT, - [186981] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11834), 1, - anon_sym_DOT_DOT, - [186988] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11836), 1, - anon_sym_DOT_DOT, - [186995] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11838), 1, - anon_sym_DOT_DOT, - [187002] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11840), 1, - anon_sym_DOT_DOT, - [187009] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11842), 1, - anon_sym_DOT_DOT, - [187016] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11844), 1, - anon_sym_DOT_DOT, - [187023] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11846), 1, - anon_sym_DOT_DOT, - [187030] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11848), 1, - anon_sym_DOT_DOT, - [187037] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11850), 1, - anon_sym_DOT_DOT, - [187044] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11852), 1, - aux_sym_brace_expression_token1, - [187051] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11854), 1, - sym_word, - [187058] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11856), 1, - anon_sym_RPAREN, - [187065] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11858), 1, - anon_sym_BQUOTE, - [187072] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1304), 1, - anon_sym_RBRACE3, - [187079] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11764), 1, - anon_sym_RPAREN, - [187086] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11860), 1, - aux_sym_brace_expression_token1, - [187093] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11862), 1, - sym_word, - [187100] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11864), 1, - anon_sym_RPAREN, - [187107] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11866), 1, - anon_sym_RBRACE3, - [187114] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(10828), 1, - aux_sym__simple_variable_name_token1, - [187121] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1296), 1, - anon_sym_RBRACE3, - [187128] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11868), 1, - aux_sym_brace_expression_token1, - [187135] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11870), 1, - sym_word, - [187142] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11872), 1, - anon_sym_RPAREN, - [187149] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11294), 1, - anon_sym_BQUOTE, - [187156] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11874), 1, - aux_sym_brace_expression_token1, - [187163] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11876), 1, - sym_word, - [187170] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11878), 1, - anon_sym_RPAREN, - [187177] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11880), 1, - aux_sym_brace_expression_token1, - [187184] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11882), 1, - aux_sym_brace_expression_token1, - [187191] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11884), 1, - aux_sym_brace_expression_token1, - [187198] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11886), 1, - aux_sym_brace_expression_token1, - [187205] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11888), 1, - aux_sym_brace_expression_token1, - [187212] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11890), 1, - aux_sym_brace_expression_token1, - [187219] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11892), 1, - aux_sym_brace_expression_token1, - [187226] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11894), 1, - aux_sym_brace_expression_token1, - [187233] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11896), 1, - aux_sym_brace_expression_token1, - [187240] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11898), 1, - aux_sym_brace_expression_token1, - [187247] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11900), 1, - aux_sym_brace_expression_token1, - [187254] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11902), 1, - aux_sym_brace_expression_token1, - [187261] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11904), 1, - aux_sym_brace_expression_token1, - [187268] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11906), 1, - aux_sym_brace_expression_token1, - [187275] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11908), 1, - aux_sym_brace_expression_token1, - [187282] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11910), 1, - aux_sym_brace_expression_token1, - [187289] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11912), 1, - aux_sym_brace_expression_token1, - [187296] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11914), 1, - aux_sym_brace_expression_token1, - [187303] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11916), 1, - aux_sym_brace_expression_token1, - [187310] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11918), 1, - aux_sym_brace_expression_token1, - [187317] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11920), 1, - aux_sym_brace_expression_token1, - [187324] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11922), 1, - aux_sym_brace_expression_token1, - [187331] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11924), 1, - aux_sym_brace_expression_token1, - [187338] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11926), 1, - aux_sym_brace_expression_token1, - [187345] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11928), 1, - aux_sym_brace_expression_token1, - [187352] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11930), 1, - aux_sym_brace_expression_token1, - [187359] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11932), 1, - aux_sym_brace_expression_token1, - [187366] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11934), 1, - aux_sym_brace_expression_token1, - [187373] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11936), 1, - aux_sym_brace_expression_token1, - [187380] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11938), 1, - aux_sym_brace_expression_token1, - [187387] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11940), 1, - aux_sym_brace_expression_token1, - [187394] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11942), 1, - aux_sym_brace_expression_token1, - [187401] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11944), 1, - aux_sym_brace_expression_token1, - [187408] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11946), 1, - aux_sym_brace_expression_token1, - [187415] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11948), 1, - aux_sym_brace_expression_token1, - [187422] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11950), 1, - aux_sym_brace_expression_token1, - [187429] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11952), 1, - aux_sym_brace_expression_token1, - [187436] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11954), 1, - aux_sym_brace_expression_token1, - [187443] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11956), 1, - aux_sym_brace_expression_token1, - [187450] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11958), 1, - aux_sym_brace_expression_token1, - [187457] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11960), 1, - aux_sym_brace_expression_token1, - [187464] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11962), 1, - aux_sym_brace_expression_token1, - [187471] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11964), 1, - aux_sym_brace_expression_token1, - [187478] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11966), 1, - aux_sym_brace_expression_token1, - [187485] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(11968), 1, - anon_sym_RPAREN, -}; - -static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(433)] = 0, - [SMALL_STATE(434)] = 71, - [SMALL_STATE(435)] = 150, - [SMALL_STATE(436)] = 282, - [SMALL_STATE(437)] = 414, - [SMALL_STATE(438)] = 546, - [SMALL_STATE(439)] = 678, - [SMALL_STATE(440)] = 783, - [SMALL_STATE(441)] = 888, - [SMALL_STATE(442)] = 993, - [SMALL_STATE(443)] = 1097, - [SMALL_STATE(444)] = 1201, - [SMALL_STATE(445)] = 1305, - [SMALL_STATE(446)] = 1409, - [SMALL_STATE(447)] = 1513, - [SMALL_STATE(448)] = 1617, - [SMALL_STATE(449)] = 1721, - [SMALL_STATE(450)] = 1825, - [SMALL_STATE(451)] = 1928, - [SMALL_STATE(452)] = 2031, - [SMALL_STATE(453)] = 2134, - [SMALL_STATE(454)] = 2237, - [SMALL_STATE(455)] = 2340, - [SMALL_STATE(456)] = 2443, - [SMALL_STATE(457)] = 2546, - [SMALL_STATE(458)] = 2649, - [SMALL_STATE(459)] = 2752, - [SMALL_STATE(460)] = 2855, - [SMALL_STATE(461)] = 2958, - [SMALL_STATE(462)] = 3029, - [SMALL_STATE(463)] = 3100, - [SMALL_STATE(464)] = 3170, - [SMALL_STATE(465)] = 3272, - [SMALL_STATE(466)] = 3370, - [SMALL_STATE(467)] = 3468, - [SMALL_STATE(468)] = 3570, - [SMALL_STATE(469)] = 3638, - [SMALL_STATE(470)] = 3706, - [SMALL_STATE(471)] = 3808, - [SMALL_STATE(472)] = 3904, - [SMALL_STATE(473)] = 4006, - [SMALL_STATE(474)] = 4108, - [SMALL_STATE(475)] = 4210, - [SMALL_STATE(476)] = 4312, - [SMALL_STATE(477)] = 4414, - [SMALL_STATE(478)] = 4516, - [SMALL_STATE(479)] = 4586, - [SMALL_STATE(480)] = 4688, - [SMALL_STATE(481)] = 4790, - [SMALL_STATE(482)] = 4892, - [SMALL_STATE(483)] = 4992, - [SMALL_STATE(484)] = 5092, - [SMALL_STATE(485)] = 5194, - [SMALL_STATE(486)] = 5292, - [SMALL_STATE(487)] = 5387, - [SMALL_STATE(488)] = 5456, - [SMALL_STATE(489)] = 5557, - [SMALL_STATE(490)] = 5652, - [SMALL_STATE(491)] = 5721, - [SMALL_STATE(492)] = 5822, - [SMALL_STATE(493)] = 5921, - [SMALL_STATE(494)] = 5990, - [SMALL_STATE(495)] = 6091, - [SMALL_STATE(496)] = 6190, - [SMALL_STATE(497)] = 6287, - [SMALL_STATE(498)] = 6354, - [SMALL_STATE(499)] = 6423, - [SMALL_STATE(500)] = 6492, - [SMALL_STATE(501)] = 6559, - [SMALL_STATE(502)] = 6628, - [SMALL_STATE(503)] = 6725, - [SMALL_STATE(504)] = 6826, - [SMALL_STATE(505)] = 6923, - [SMALL_STATE(506)] = 7024, - [SMALL_STATE(507)] = 7123, - [SMALL_STATE(508)] = 7218, - [SMALL_STATE(509)] = 7287, - [SMALL_STATE(510)] = 7386, - [SMALL_STATE(511)] = 7481, - [SMALL_STATE(512)] = 7550, - [SMALL_STATE(513)] = 7646, - [SMALL_STATE(514)] = 7742, - [SMALL_STATE(515)] = 7838, - [SMALL_STATE(516)] = 7906, - [SMALL_STATE(517)] = 7974, - [SMALL_STATE(518)] = 8040, - [SMALL_STATE(519)] = 8134, - [SMALL_STATE(520)] = 8200, - [SMALL_STATE(521)] = 8266, - [SMALL_STATE(522)] = 8360, - [SMALL_STATE(523)] = 8454, - [SMALL_STATE(524)] = 8548, - [SMALL_STATE(525)] = 8616, - [SMALL_STATE(526)] = 8684, - [SMALL_STATE(527)] = 8778, - [SMALL_STATE(528)] = 8874, - [SMALL_STATE(529)] = 8942, - [SMALL_STATE(530)] = 9010, - [SMALL_STATE(531)] = 9076, - [SMALL_STATE(532)] = 9144, - [SMALL_STATE(533)] = 9240, - [SMALL_STATE(534)] = 9308, - [SMALL_STATE(535)] = 9376, - [SMALL_STATE(536)] = 9444, - [SMALL_STATE(537)] = 9540, - [SMALL_STATE(538)] = 9607, - [SMALL_STATE(539)] = 9706, - [SMALL_STATE(540)] = 9799, - [SMALL_STATE(541)] = 9862, - [SMALL_STATE(542)] = 9955, - [SMALL_STATE(543)] = 10020, - [SMALL_STATE(544)] = 10115, - [SMALL_STATE(545)] = 10182, - [SMALL_STATE(546)] = 10275, - [SMALL_STATE(547)] = 10342, - [SMALL_STATE(548)] = 10437, - [SMALL_STATE(549)] = 10496, - [SMALL_STATE(550)] = 10589, - [SMALL_STATE(551)] = 10654, - [SMALL_STATE(552)] = 10717, - [SMALL_STATE(553)] = 10784, - [SMALL_STATE(554)] = 10877, - [SMALL_STATE(555)] = 10944, - [SMALL_STATE(556)] = 11037, - [SMALL_STATE(557)] = 11104, - [SMALL_STATE(558)] = 11203, - [SMALL_STATE(559)] = 11296, - [SMALL_STATE(560)] = 11391, - [SMALL_STATE(561)] = 11454, - [SMALL_STATE(562)] = 11553, - [SMALL_STATE(563)] = 11620, - [SMALL_STATE(564)] = 11687, - [SMALL_STATE(565)] = 11754, - [SMALL_STATE(566)] = 11821, - [SMALL_STATE(567)] = 11884, - [SMALL_STATE(568)] = 11977, - [SMALL_STATE(569)] = 12070, - [SMALL_STATE(570)] = 12137, - [SMALL_STATE(571)] = 12204, - [SMALL_STATE(572)] = 12270, - [SMALL_STATE(573)] = 12336, - [SMALL_STATE(574)] = 12426, - [SMALL_STATE(575)] = 12492, - [SMALL_STATE(576)] = 12558, - [SMALL_STATE(577)] = 12674, - [SMALL_STATE(578)] = 12790, - [SMALL_STATE(579)] = 12906, - [SMALL_STATE(580)] = 13022, - [SMALL_STATE(581)] = 13138, - [SMALL_STATE(582)] = 13238, - [SMALL_STATE(583)] = 13354, - [SMALL_STATE(584)] = 13454, - [SMALL_STATE(585)] = 13520, - [SMALL_STATE(586)] = 13586, - [SMALL_STATE(587)] = 13652, - [SMALL_STATE(588)] = 13768, - [SMALL_STATE(589)] = 13866, - [SMALL_STATE(590)] = 13932, - [SMALL_STATE(591)] = 14030, - [SMALL_STATE(592)] = 14096, - [SMALL_STATE(593)] = 14162, - [SMALL_STATE(594)] = 14228, - [SMALL_STATE(595)] = 14318, - [SMALL_STATE(596)] = 14384, - [SMALL_STATE(597)] = 14482, - [SMALL_STATE(598)] = 14580, - [SMALL_STATE(599)] = 14672, - [SMALL_STATE(600)] = 14788, - [SMALL_STATE(601)] = 14880, - [SMALL_STATE(602)] = 14972, - [SMALL_STATE(603)] = 15070, - [SMALL_STATE(604)] = 15170, - [SMALL_STATE(605)] = 15269, - [SMALL_STATE(606)] = 15370, - [SMALL_STATE(607)] = 15435, - [SMALL_STATE(608)] = 15500, - [SMALL_STATE(609)] = 15577, - [SMALL_STATE(610)] = 15676, - [SMALL_STATE(611)] = 15745, - [SMALL_STATE(612)] = 15844, - [SMALL_STATE(613)] = 15943, - [SMALL_STATE(614)] = 16020, - [SMALL_STATE(615)] = 16085, - [SMALL_STATE(616)] = 16184, - [SMALL_STATE(617)] = 16253, - [SMALL_STATE(618)] = 16318, - [SMALL_STATE(619)] = 16383, - [SMALL_STATE(620)] = 16448, - [SMALL_STATE(621)] = 16510, - [SMALL_STATE(622)] = 16568, - [SMALL_STATE(623)] = 16630, - [SMALL_STATE(624)] = 16688, - [SMALL_STATE(625)] = 16764, - [SMALL_STATE(626)] = 16832, - [SMALL_STATE(627)] = 16894, - [SMALL_STATE(628)] = 16956, - [SMALL_STATE(629)] = 17012, - [SMALL_STATE(630)] = 17104, - [SMALL_STATE(631)] = 17162, - [SMALL_STATE(632)] = 17230, - [SMALL_STATE(633)] = 17306, - [SMALL_STATE(634)] = 17364, - [SMALL_STATE(635)] = 17456, - [SMALL_STATE(636)] = 17514, - [SMALL_STATE(637)] = 17606, - [SMALL_STATE(638)] = 17662, - [SMALL_STATE(639)] = 17726, - [SMALL_STATE(640)] = 17816, - [SMALL_STATE(641)] = 17880, - [SMALL_STATE(642)] = 17944, - [SMALL_STATE(643)] = 18036, - [SMALL_STATE(644)] = 18099, - [SMALL_STATE(645)] = 18174, - [SMALL_STATE(646)] = 18267, - [SMALL_STATE(647)] = 18322, - [SMALL_STATE(648)] = 18411, - [SMALL_STATE(649)] = 18480, - [SMALL_STATE(650)] = 18569, - [SMALL_STATE(651)] = 18662, - [SMALL_STATE(652)] = 18725, - [SMALL_STATE(653)] = 18782, - [SMALL_STATE(654)] = 18857, - [SMALL_STATE(655)] = 18920, - [SMALL_STATE(656)] = 18983, - [SMALL_STATE(657)] = 19050, - [SMALL_STATE(658)] = 19113, - [SMALL_STATE(659)] = 19176, - [SMALL_STATE(660)] = 19269, - [SMALL_STATE(661)] = 19326, - [SMALL_STATE(662)] = 19389, - [SMALL_STATE(663)] = 19464, - [SMALL_STATE(664)] = 19531, - [SMALL_STATE(665)] = 19622, - [SMALL_STATE(666)] = 19683, - [SMALL_STATE(667)] = 19744, - [SMALL_STATE(668)] = 19807, - [SMALL_STATE(669)] = 19870, - [SMALL_STATE(670)] = 19961, - [SMALL_STATE(671)] = 20022, - [SMALL_STATE(672)] = 20083, - [SMALL_STATE(673)] = 20172, - [SMALL_STATE(674)] = 20233, - [SMALL_STATE(675)] = 20300, - [SMALL_STATE(676)] = 20361, - [SMALL_STATE(677)] = 20436, - [SMALL_STATE(678)] = 20497, - [SMALL_STATE(679)] = 20558, - [SMALL_STATE(680)] = 20619, - [SMALL_STATE(681)] = 20680, - [SMALL_STATE(682)] = 20741, - [SMALL_STATE(683)] = 20832, - [SMALL_STATE(684)] = 20893, - [SMALL_STATE(685)] = 20954, - [SMALL_STATE(686)] = 21045, - [SMALL_STATE(687)] = 21106, - [SMALL_STATE(688)] = 21166, - [SMALL_STATE(689)] = 21226, - [SMALL_STATE(690)] = 21288, - [SMALL_STATE(691)] = 21348, - [SMALL_STATE(692)] = 21402, - [SMALL_STATE(693)] = 21464, - [SMALL_STATE(694)] = 21518, - [SMALL_STATE(695)] = 21572, - [SMALL_STATE(696)] = 21626, - [SMALL_STATE(697)] = 21686, - [SMALL_STATE(698)] = 21746, - [SMALL_STATE(699)] = 21800, - [SMALL_STATE(700)] = 21854, - [SMALL_STATE(701)] = 21908, - [SMALL_STATE(702)] = 21974, - [SMALL_STATE(703)] = 22028, - [SMALL_STATE(704)] = 22094, - [SMALL_STATE(705)] = 22148, - [SMALL_STATE(706)] = 22202, - [SMALL_STATE(707)] = 22298, - [SMALL_STATE(708)] = 22358, - [SMALL_STATE(709)] = 22418, - [SMALL_STATE(710)] = 22490, - [SMALL_STATE(711)] = 22550, - [SMALL_STATE(712)] = 22604, - [SMALL_STATE(713)] = 22658, - [SMALL_STATE(714)] = 22712, - [SMALL_STATE(715)] = 22766, - [SMALL_STATE(716)] = 22826, - [SMALL_STATE(717)] = 22880, - [SMALL_STATE(718)] = 22934, - [SMALL_STATE(719)] = 22988, - [SMALL_STATE(720)] = 23048, - [SMALL_STATE(721)] = 23102, - [SMALL_STATE(722)] = 23156, - [SMALL_STATE(723)] = 23216, - [SMALL_STATE(724)] = 23270, - [SMALL_STATE(725)] = 23330, - [SMALL_STATE(726)] = 23390, - [SMALL_STATE(727)] = 23452, - [SMALL_STATE(728)] = 23512, - [SMALL_STATE(729)] = 23572, - [SMALL_STATE(730)] = 23632, - [SMALL_STATE(731)] = 23692, - [SMALL_STATE(732)] = 23752, - [SMALL_STATE(733)] = 23824, - [SMALL_STATE(734)] = 23884, - [SMALL_STATE(735)] = 23944, - [SMALL_STATE(736)] = 24004, - [SMALL_STATE(737)] = 24064, - [SMALL_STATE(738)] = 24124, - [SMALL_STATE(739)] = 24186, - [SMALL_STATE(740)] = 24246, - [SMALL_STATE(741)] = 24336, - [SMALL_STATE(742)] = 24398, - [SMALL_STATE(743)] = 24472, - [SMALL_STATE(744)] = 24546, - [SMALL_STATE(745)] = 24608, - [SMALL_STATE(746)] = 24670, - [SMALL_STATE(747)] = 24760, - [SMALL_STATE(748)] = 24820, - [SMALL_STATE(749)] = 24880, - [SMALL_STATE(750)] = 24942, - [SMALL_STATE(751)] = 25004, - [SMALL_STATE(752)] = 25066, - [SMALL_STATE(753)] = 25156, - [SMALL_STATE(754)] = 25228, - [SMALL_STATE(755)] = 25294, - [SMALL_STATE(756)] = 25366, - [SMALL_STATE(757)] = 25432, - [SMALL_STATE(758)] = 25492, - [SMALL_STATE(759)] = 25552, - [SMALL_STATE(760)] = 25624, - [SMALL_STATE(761)] = 25686, - [SMALL_STATE(762)] = 25748, - [SMALL_STATE(763)] = 25844, - [SMALL_STATE(764)] = 25916, - [SMALL_STATE(765)] = 25988, - [SMALL_STATE(766)] = 26060, - [SMALL_STATE(767)] = 26113, - [SMALL_STATE(768)] = 26172, - [SMALL_STATE(769)] = 26233, - [SMALL_STATE(770)] = 26292, - [SMALL_STATE(771)] = 26351, - [SMALL_STATE(772)] = 26410, - [SMALL_STATE(773)] = 26469, - [SMALL_STATE(774)] = 26528, - [SMALL_STATE(775)] = 26587, - [SMALL_STATE(776)] = 26640, - [SMALL_STATE(777)] = 26699, - [SMALL_STATE(778)] = 26758, - [SMALL_STATE(779)] = 26817, - [SMALL_STATE(780)] = 26876, - [SMALL_STATE(781)] = 26935, - [SMALL_STATE(782)] = 26994, - [SMALL_STATE(783)] = 27087, - [SMALL_STATE(784)] = 27180, - [SMALL_STATE(785)] = 27239, - [SMALL_STATE(786)] = 27298, - [SMALL_STATE(787)] = 27357, - [SMALL_STATE(788)] = 27416, - [SMALL_STATE(789)] = 27475, - [SMALL_STATE(790)] = 27528, - [SMALL_STATE(791)] = 27587, - [SMALL_STATE(792)] = 27648, - [SMALL_STATE(793)] = 27705, - [SMALL_STATE(794)] = 27766, - [SMALL_STATE(795)] = 27825, - [SMALL_STATE(796)] = 27884, - [SMALL_STATE(797)] = 27941, - [SMALL_STATE(798)] = 28000, - [SMALL_STATE(799)] = 28059, - [SMALL_STATE(800)] = 28118, - [SMALL_STATE(801)] = 28177, - [SMALL_STATE(802)] = 28236, - [SMALL_STATE(803)] = 28289, - [SMALL_STATE(804)] = 28342, - [SMALL_STATE(805)] = 28395, - [SMALL_STATE(806)] = 28448, - [SMALL_STATE(807)] = 28501, - [SMALL_STATE(808)] = 28560, - [SMALL_STATE(809)] = 28619, - [SMALL_STATE(810)] = 28676, - [SMALL_STATE(811)] = 28735, - [SMALL_STATE(812)] = 28794, - [SMALL_STATE(813)] = 28847, - [SMALL_STATE(814)] = 28906, - [SMALL_STATE(815)] = 28965, - [SMALL_STATE(816)] = 29018, - [SMALL_STATE(817)] = 29077, - [SMALL_STATE(818)] = 29136, - [SMALL_STATE(819)] = 29195, - [SMALL_STATE(820)] = 29248, - [SMALL_STATE(821)] = 29301, - [SMALL_STATE(822)] = 29354, - [SMALL_STATE(823)] = 29407, - [SMALL_STATE(824)] = 29460, - [SMALL_STATE(825)] = 29553, - [SMALL_STATE(826)] = 29606, - [SMALL_STATE(827)] = 29659, - [SMALL_STATE(828)] = 29712, - [SMALL_STATE(829)] = 29771, - [SMALL_STATE(830)] = 29832, - [SMALL_STATE(831)] = 29885, - [SMALL_STATE(832)] = 29942, - [SMALL_STATE(833)] = 29995, - [SMALL_STATE(834)] = 30048, - [SMALL_STATE(835)] = 30101, - [SMALL_STATE(836)] = 30154, - [SMALL_STATE(837)] = 30213, - [SMALL_STATE(838)] = 30266, - [SMALL_STATE(839)] = 30319, - [SMALL_STATE(840)] = 30372, - [SMALL_STATE(841)] = 30425, - [SMALL_STATE(842)] = 30478, - [SMALL_STATE(843)] = 30531, - [SMALL_STATE(844)] = 30584, - [SMALL_STATE(845)] = 30643, - [SMALL_STATE(846)] = 30696, - [SMALL_STATE(847)] = 30755, - [SMALL_STATE(848)] = 30808, - [SMALL_STATE(849)] = 30861, - [SMALL_STATE(850)] = 30914, - [SMALL_STATE(851)] = 30967, - [SMALL_STATE(852)] = 31020, - [SMALL_STATE(853)] = 31073, - [SMALL_STATE(854)] = 31126, - [SMALL_STATE(855)] = 31179, - [SMALL_STATE(856)] = 31238, - [SMALL_STATE(857)] = 31297, - [SMALL_STATE(858)] = 31356, - [SMALL_STATE(859)] = 31415, - [SMALL_STATE(860)] = 31468, - [SMALL_STATE(861)] = 31561, - [SMALL_STATE(862)] = 31654, - [SMALL_STATE(863)] = 31715, - [SMALL_STATE(864)] = 31776, - [SMALL_STATE(865)] = 31869, - [SMALL_STATE(866)] = 31962, - [SMALL_STATE(867)] = 32055, - [SMALL_STATE(868)] = 32114, - [SMALL_STATE(869)] = 32207, - [SMALL_STATE(870)] = 32300, - [SMALL_STATE(871)] = 32352, - [SMALL_STATE(872)] = 32404, - [SMALL_STATE(873)] = 32456, - [SMALL_STATE(874)] = 32508, - [SMALL_STATE(875)] = 32560, - [SMALL_STATE(876)] = 32612, - [SMALL_STATE(877)] = 32664, - [SMALL_STATE(878)] = 32716, - [SMALL_STATE(879)] = 32768, - [SMALL_STATE(880)] = 32820, - [SMALL_STATE(881)] = 32872, - [SMALL_STATE(882)] = 32924, - [SMALL_STATE(883)] = 32982, - [SMALL_STATE(884)] = 33040, - [SMALL_STATE(885)] = 33092, - [SMALL_STATE(886)] = 33144, - [SMALL_STATE(887)] = 33196, - [SMALL_STATE(888)] = 33248, - [SMALL_STATE(889)] = 33306, - [SMALL_STATE(890)] = 33364, - [SMALL_STATE(891)] = 33422, - [SMALL_STATE(892)] = 33480, - [SMALL_STATE(893)] = 33538, - [SMALL_STATE(894)] = 33596, - [SMALL_STATE(895)] = 33694, - [SMALL_STATE(896)] = 33752, - [SMALL_STATE(897)] = 33850, - [SMALL_STATE(898)] = 33908, - [SMALL_STATE(899)] = 33966, - [SMALL_STATE(900)] = 34064, - [SMALL_STATE(901)] = 34120, - [SMALL_STATE(902)] = 34172, - [SMALL_STATE(903)] = 34230, - [SMALL_STATE(904)] = 34288, - [SMALL_STATE(905)] = 34344, - [SMALL_STATE(906)] = 34396, - [SMALL_STATE(907)] = 34448, - [SMALL_STATE(908)] = 34504, - [SMALL_STATE(909)] = 34602, - [SMALL_STATE(910)] = 34654, - [SMALL_STATE(911)] = 34706, - [SMALL_STATE(912)] = 34764, - [SMALL_STATE(913)] = 34822, - [SMALL_STATE(914)] = 34880, - [SMALL_STATE(915)] = 34938, - [SMALL_STATE(916)] = 34996, - [SMALL_STATE(917)] = 35054, - [SMALL_STATE(918)] = 35106, - [SMALL_STATE(919)] = 35158, - [SMALL_STATE(920)] = 35216, - [SMALL_STATE(921)] = 35268, - [SMALL_STATE(922)] = 35320, - [SMALL_STATE(923)] = 35372, - [SMALL_STATE(924)] = 35424, - [SMALL_STATE(925)] = 35480, - [SMALL_STATE(926)] = 35538, - [SMALL_STATE(927)] = 35590, - [SMALL_STATE(928)] = 35642, - [SMALL_STATE(929)] = 35694, - [SMALL_STATE(930)] = 35746, - [SMALL_STATE(931)] = 35804, - [SMALL_STATE(932)] = 35856, - [SMALL_STATE(933)] = 35914, - [SMALL_STATE(934)] = 35972, - [SMALL_STATE(935)] = 36030, - [SMALL_STATE(936)] = 36088, - [SMALL_STATE(937)] = 36146, - [SMALL_STATE(938)] = 36204, - [SMALL_STATE(939)] = 36256, - [SMALL_STATE(940)] = 36314, - [SMALL_STATE(941)] = 36370, - [SMALL_STATE(942)] = 36468, - [SMALL_STATE(943)] = 36526, - [SMALL_STATE(944)] = 36584, - [SMALL_STATE(945)] = 36642, - [SMALL_STATE(946)] = 36700, - [SMALL_STATE(947)] = 36752, - [SMALL_STATE(948)] = 36804, - [SMALL_STATE(949)] = 36862, - [SMALL_STATE(950)] = 36960, - [SMALL_STATE(951)] = 37012, - [SMALL_STATE(952)] = 37064, - [SMALL_STATE(953)] = 37116, - [SMALL_STATE(954)] = 37168, - [SMALL_STATE(955)] = 37220, - [SMALL_STATE(956)] = 37272, - [SMALL_STATE(957)] = 37324, - [SMALL_STATE(958)] = 37422, - [SMALL_STATE(959)] = 37480, - [SMALL_STATE(960)] = 37538, - [SMALL_STATE(961)] = 37590, - [SMALL_STATE(962)] = 37642, - [SMALL_STATE(963)] = 37694, - [SMALL_STATE(964)] = 37752, - [SMALL_STATE(965)] = 37810, - [SMALL_STATE(966)] = 37866, - [SMALL_STATE(967)] = 37918, - [SMALL_STATE(968)] = 37970, - [SMALL_STATE(969)] = 38022, - [SMALL_STATE(970)] = 38074, - [SMALL_STATE(971)] = 38126, - [SMALL_STATE(972)] = 38178, - [SMALL_STATE(973)] = 38230, - [SMALL_STATE(974)] = 38282, - [SMALL_STATE(975)] = 38334, - [SMALL_STATE(976)] = 38386, - [SMALL_STATE(977)] = 38438, - [SMALL_STATE(978)] = 38490, - [SMALL_STATE(979)] = 38542, - [SMALL_STATE(980)] = 38594, - [SMALL_STATE(981)] = 38646, - [SMALL_STATE(982)] = 38698, - [SMALL_STATE(983)] = 38750, - [SMALL_STATE(984)] = 38802, - [SMALL_STATE(985)] = 38854, - [SMALL_STATE(986)] = 38906, - [SMALL_STATE(987)] = 38958, - [SMALL_STATE(988)] = 39010, - [SMALL_STATE(989)] = 39062, - [SMALL_STATE(990)] = 39114, - [SMALL_STATE(991)] = 39166, - [SMALL_STATE(992)] = 39218, - [SMALL_STATE(993)] = 39276, - [SMALL_STATE(994)] = 39334, - [SMALL_STATE(995)] = 39386, - [SMALL_STATE(996)] = 39438, - [SMALL_STATE(997)] = 39494, - [SMALL_STATE(998)] = 39546, - [SMALL_STATE(999)] = 39598, - [SMALL_STATE(1000)] = 39656, - [SMALL_STATE(1001)] = 39714, - [SMALL_STATE(1002)] = 39766, - [SMALL_STATE(1003)] = 39864, - [SMALL_STATE(1004)] = 39916, - [SMALL_STATE(1005)] = 39974, - [SMALL_STATE(1006)] = 40026, - [SMALL_STATE(1007)] = 40078, - [SMALL_STATE(1008)] = 40130, - [SMALL_STATE(1009)] = 40182, - [SMALL_STATE(1010)] = 40234, - [SMALL_STATE(1011)] = 40286, - [SMALL_STATE(1012)] = 40338, - [SMALL_STATE(1013)] = 40390, - [SMALL_STATE(1014)] = 40448, - [SMALL_STATE(1015)] = 40500, - [SMALL_STATE(1016)] = 40552, - [SMALL_STATE(1017)] = 40604, - [SMALL_STATE(1018)] = 40656, - [SMALL_STATE(1019)] = 40708, - [SMALL_STATE(1020)] = 40760, - [SMALL_STATE(1021)] = 40812, - [SMALL_STATE(1022)] = 40864, - [SMALL_STATE(1023)] = 40916, - [SMALL_STATE(1024)] = 40968, - [SMALL_STATE(1025)] = 41020, - [SMALL_STATE(1026)] = 41078, - [SMALL_STATE(1027)] = 41168, - [SMALL_STATE(1028)] = 41220, - [SMALL_STATE(1029)] = 41272, - [SMALL_STATE(1030)] = 41324, - [SMALL_STATE(1031)] = 41376, - [SMALL_STATE(1032)] = 41428, - [SMALL_STATE(1033)] = 41480, - [SMALL_STATE(1034)] = 41532, - [SMALL_STATE(1035)] = 41584, - [SMALL_STATE(1036)] = 41635, - [SMALL_STATE(1037)] = 41686, - [SMALL_STATE(1038)] = 41743, - [SMALL_STATE(1039)] = 41794, - [SMALL_STATE(1040)] = 41845, - [SMALL_STATE(1041)] = 41896, - [SMALL_STATE(1042)] = 41947, - [SMALL_STATE(1043)] = 41998, - [SMALL_STATE(1044)] = 42049, - [SMALL_STATE(1045)] = 42112, - [SMALL_STATE(1046)] = 42163, - [SMALL_STATE(1047)] = 42214, - [SMALL_STATE(1048)] = 42265, - [SMALL_STATE(1049)] = 42316, - [SMALL_STATE(1050)] = 42371, - [SMALL_STATE(1051)] = 42422, - [SMALL_STATE(1052)] = 42473, - [SMALL_STATE(1053)] = 42524, - [SMALL_STATE(1054)] = 42575, - [SMALL_STATE(1055)] = 42626, - [SMALL_STATE(1056)] = 42677, - [SMALL_STATE(1057)] = 42728, - [SMALL_STATE(1058)] = 42779, - [SMALL_STATE(1059)] = 42830, - [SMALL_STATE(1060)] = 42885, - [SMALL_STATE(1061)] = 42936, - [SMALL_STATE(1062)] = 42991, - [SMALL_STATE(1063)] = 43042, - [SMALL_STATE(1064)] = 43093, - [SMALL_STATE(1065)] = 43150, - [SMALL_STATE(1066)] = 43201, - [SMALL_STATE(1067)] = 43252, - [SMALL_STATE(1068)] = 43309, - [SMALL_STATE(1069)] = 43364, - [SMALL_STATE(1070)] = 43415, - [SMALL_STATE(1071)] = 43466, - [SMALL_STATE(1072)] = 43517, - [SMALL_STATE(1073)] = 43574, - [SMALL_STATE(1074)] = 43631, - [SMALL_STATE(1075)] = 43688, - [SMALL_STATE(1076)] = 43739, - [SMALL_STATE(1077)] = 43790, - [SMALL_STATE(1078)] = 43841, - [SMALL_STATE(1079)] = 43898, - [SMALL_STATE(1080)] = 43953, - [SMALL_STATE(1081)] = 44010, - [SMALL_STATE(1082)] = 44067, - [SMALL_STATE(1083)] = 44118, - [SMALL_STATE(1084)] = 44169, - [SMALL_STATE(1085)] = 44220, - [SMALL_STATE(1086)] = 44271, - [SMALL_STATE(1087)] = 44322, - [SMALL_STATE(1088)] = 44373, - [SMALL_STATE(1089)] = 44424, - [SMALL_STATE(1090)] = 44475, - [SMALL_STATE(1091)] = 44544, - [SMALL_STATE(1092)] = 44601, - [SMALL_STATE(1093)] = 44652, - [SMALL_STATE(1094)] = 44703, - [SMALL_STATE(1095)] = 44754, - [SMALL_STATE(1096)] = 44805, - [SMALL_STATE(1097)] = 44860, - [SMALL_STATE(1098)] = 44911, - [SMALL_STATE(1099)] = 44962, - [SMALL_STATE(1100)] = 45013, - [SMALL_STATE(1101)] = 45064, - [SMALL_STATE(1102)] = 45121, - [SMALL_STATE(1103)] = 45178, - [SMALL_STATE(1104)] = 45233, - [SMALL_STATE(1105)] = 45288, - [SMALL_STATE(1106)] = 45339, - [SMALL_STATE(1107)] = 45390, - [SMALL_STATE(1108)] = 45441, - [SMALL_STATE(1109)] = 45492, - [SMALL_STATE(1110)] = 45543, - [SMALL_STATE(1111)] = 45600, - [SMALL_STATE(1112)] = 45651, - [SMALL_STATE(1113)] = 45702, - [SMALL_STATE(1114)] = 45753, - [SMALL_STATE(1115)] = 45804, - [SMALL_STATE(1116)] = 45855, - [SMALL_STATE(1117)] = 45906, - [SMALL_STATE(1118)] = 45957, - [SMALL_STATE(1119)] = 46008, - [SMALL_STATE(1120)] = 46059, - [SMALL_STATE(1121)] = 46110, - [SMALL_STATE(1122)] = 46161, - [SMALL_STATE(1123)] = 46218, - [SMALL_STATE(1124)] = 46269, - [SMALL_STATE(1125)] = 46326, - [SMALL_STATE(1126)] = 46383, - [SMALL_STATE(1127)] = 46440, - [SMALL_STATE(1128)] = 46497, - [SMALL_STATE(1129)] = 46554, - [SMALL_STATE(1130)] = 46611, - [SMALL_STATE(1131)] = 46666, - [SMALL_STATE(1132)] = 46723, - [SMALL_STATE(1133)] = 46774, - [SMALL_STATE(1134)] = 46825, - [SMALL_STATE(1135)] = 46876, - [SMALL_STATE(1136)] = 46933, - [SMALL_STATE(1137)] = 46990, - [SMALL_STATE(1138)] = 47041, - [SMALL_STATE(1139)] = 47092, - [SMALL_STATE(1140)] = 47147, - [SMALL_STATE(1141)] = 47202, - [SMALL_STATE(1142)] = 47253, - [SMALL_STATE(1143)] = 47304, - [SMALL_STATE(1144)] = 47355, - [SMALL_STATE(1145)] = 47406, - [SMALL_STATE(1146)] = 47463, - [SMALL_STATE(1147)] = 47514, - [SMALL_STATE(1148)] = 47571, - [SMALL_STATE(1149)] = 47622, - [SMALL_STATE(1150)] = 47677, - [SMALL_STATE(1151)] = 47728, - [SMALL_STATE(1152)] = 47779, - [SMALL_STATE(1153)] = 47830, - [SMALL_STATE(1154)] = 47881, - [SMALL_STATE(1155)] = 47936, - [SMALL_STATE(1156)] = 47987, - [SMALL_STATE(1157)] = 48044, - [SMALL_STATE(1158)] = 48095, - [SMALL_STATE(1159)] = 48146, - [SMALL_STATE(1160)] = 48203, - [SMALL_STATE(1161)] = 48254, - [SMALL_STATE(1162)] = 48305, - [SMALL_STATE(1163)] = 48356, - [SMALL_STATE(1164)] = 48407, - [SMALL_STATE(1165)] = 48458, - [SMALL_STATE(1166)] = 48515, - [SMALL_STATE(1167)] = 48572, - [SMALL_STATE(1168)] = 48623, - [SMALL_STATE(1169)] = 48674, - [SMALL_STATE(1170)] = 48731, - [SMALL_STATE(1171)] = 48782, - [SMALL_STATE(1172)] = 48833, - [SMALL_STATE(1173)] = 48884, - [SMALL_STATE(1174)] = 48935, - [SMALL_STATE(1175)] = 48992, - [SMALL_STATE(1176)] = 49049, - [SMALL_STATE(1177)] = 49106, - [SMALL_STATE(1178)] = 49157, - [SMALL_STATE(1179)] = 49214, - [SMALL_STATE(1180)] = 49271, - [SMALL_STATE(1181)] = 49322, - [SMALL_STATE(1182)] = 49379, - [SMALL_STATE(1183)] = 49430, - [SMALL_STATE(1184)] = 49481, - [SMALL_STATE(1185)] = 49544, - [SMALL_STATE(1186)] = 49601, - [SMALL_STATE(1187)] = 49656, - [SMALL_STATE(1188)] = 49707, - [SMALL_STATE(1189)] = 49764, - [SMALL_STATE(1190)] = 49821, - [SMALL_STATE(1191)] = 49872, - [SMALL_STATE(1192)] = 49923, - [SMALL_STATE(1193)] = 49978, - [SMALL_STATE(1194)] = 50033, - [SMALL_STATE(1195)] = 50084, - [SMALL_STATE(1196)] = 50141, - [SMALL_STATE(1197)] = 50192, - [SMALL_STATE(1198)] = 50243, - [SMALL_STATE(1199)] = 50294, - [SMALL_STATE(1200)] = 50345, - [SMALL_STATE(1201)] = 50396, - [SMALL_STATE(1202)] = 50447, - [SMALL_STATE(1203)] = 50504, - [SMALL_STATE(1204)] = 50554, - [SMALL_STATE(1205)] = 50608, - [SMALL_STATE(1206)] = 50658, - [SMALL_STATE(1207)] = 50708, - [SMALL_STATE(1208)] = 50758, - [SMALL_STATE(1209)] = 50808, - [SMALL_STATE(1210)] = 50858, - [SMALL_STATE(1211)] = 50914, - [SMALL_STATE(1212)] = 50970, - [SMALL_STATE(1213)] = 51026, - [SMALL_STATE(1214)] = 51082, - [SMALL_STATE(1215)] = 51132, - [SMALL_STATE(1216)] = 51182, - [SMALL_STATE(1217)] = 51236, - [SMALL_STATE(1218)] = 51292, - [SMALL_STATE(1219)] = 51348, - [SMALL_STATE(1220)] = 51404, - [SMALL_STATE(1221)] = 51454, - [SMALL_STATE(1222)] = 51504, - [SMALL_STATE(1223)] = 51554, - [SMALL_STATE(1224)] = 51604, - [SMALL_STATE(1225)] = 51654, - [SMALL_STATE(1226)] = 51704, - [SMALL_STATE(1227)] = 51758, - [SMALL_STATE(1228)] = 51808, - [SMALL_STATE(1229)] = 51858, - [SMALL_STATE(1230)] = 51908, - [SMALL_STATE(1231)] = 51958, - [SMALL_STATE(1232)] = 52014, - [SMALL_STATE(1233)] = 52064, - [SMALL_STATE(1234)] = 52114, - [SMALL_STATE(1235)] = 52164, - [SMALL_STATE(1236)] = 52214, - [SMALL_STATE(1237)] = 52270, - [SMALL_STATE(1238)] = 52320, - [SMALL_STATE(1239)] = 52370, - [SMALL_STATE(1240)] = 52426, - [SMALL_STATE(1241)] = 52480, - [SMALL_STATE(1242)] = 52530, - [SMALL_STATE(1243)] = 52586, - [SMALL_STATE(1244)] = 52636, - [SMALL_STATE(1245)] = 52686, - [SMALL_STATE(1246)] = 52736, - [SMALL_STATE(1247)] = 52786, - [SMALL_STATE(1248)] = 52836, - [SMALL_STATE(1249)] = 52890, - [SMALL_STATE(1250)] = 52940, - [SMALL_STATE(1251)] = 52990, - [SMALL_STATE(1252)] = 53040, - [SMALL_STATE(1253)] = 53090, - [SMALL_STATE(1254)] = 53140, - [SMALL_STATE(1255)] = 53194, - [SMALL_STATE(1256)] = 53244, - [SMALL_STATE(1257)] = 53300, - [SMALL_STATE(1258)] = 53350, - [SMALL_STATE(1259)] = 53400, - [SMALL_STATE(1260)] = 53450, - [SMALL_STATE(1261)] = 53500, - [SMALL_STATE(1262)] = 53550, - [SMALL_STATE(1263)] = 53600, - [SMALL_STATE(1264)] = 53650, - [SMALL_STATE(1265)] = 53700, - [SMALL_STATE(1266)] = 53750, - [SMALL_STATE(1267)] = 53800, - [SMALL_STATE(1268)] = 53850, - [SMALL_STATE(1269)] = 53904, - [SMALL_STATE(1270)] = 53954, - [SMALL_STATE(1271)] = 54010, - [SMALL_STATE(1272)] = 54060, - [SMALL_STATE(1273)] = 54110, - [SMALL_STATE(1274)] = 54160, - [SMALL_STATE(1275)] = 54210, - [SMALL_STATE(1276)] = 54260, - [SMALL_STATE(1277)] = 54310, - [SMALL_STATE(1278)] = 54360, - [SMALL_STATE(1279)] = 54410, - [SMALL_STATE(1280)] = 54460, - [SMALL_STATE(1281)] = 54510, - [SMALL_STATE(1282)] = 54566, - [SMALL_STATE(1283)] = 54616, - [SMALL_STATE(1284)] = 54674, - [SMALL_STATE(1285)] = 54724, - [SMALL_STATE(1286)] = 54774, - [SMALL_STATE(1287)] = 54824, - [SMALL_STATE(1288)] = 54880, - [SMALL_STATE(1289)] = 54930, - [SMALL_STATE(1290)] = 54984, - [SMALL_STATE(1291)] = 55034, - [SMALL_STATE(1292)] = 55090, - [SMALL_STATE(1293)] = 55140, - [SMALL_STATE(1294)] = 55190, - [SMALL_STATE(1295)] = 55240, - [SMALL_STATE(1296)] = 55294, - [SMALL_STATE(1297)] = 55344, - [SMALL_STATE(1298)] = 55394, - [SMALL_STATE(1299)] = 55444, - [SMALL_STATE(1300)] = 55494, - [SMALL_STATE(1301)] = 55544, - [SMALL_STATE(1302)] = 55594, - [SMALL_STATE(1303)] = 55644, - [SMALL_STATE(1304)] = 55700, - [SMALL_STATE(1305)] = 55750, - [SMALL_STATE(1306)] = 55800, - [SMALL_STATE(1307)] = 55850, - [SMALL_STATE(1308)] = 55900, - [SMALL_STATE(1309)] = 55950, - [SMALL_STATE(1310)] = 56000, - [SMALL_STATE(1311)] = 56056, - [SMALL_STATE(1312)] = 56112, - [SMALL_STATE(1313)] = 56162, - [SMALL_STATE(1314)] = 56212, - [SMALL_STATE(1315)] = 56262, - [SMALL_STATE(1316)] = 56312, - [SMALL_STATE(1317)] = 56362, - [SMALL_STATE(1318)] = 56412, - [SMALL_STATE(1319)] = 56462, - [SMALL_STATE(1320)] = 56512, - [SMALL_STATE(1321)] = 56562, - [SMALL_STATE(1322)] = 56612, - [SMALL_STATE(1323)] = 56678, - [SMALL_STATE(1324)] = 56728, - [SMALL_STATE(1325)] = 56790, - [SMALL_STATE(1326)] = 56840, - [SMALL_STATE(1327)] = 56890, - [SMALL_STATE(1328)] = 56940, - [SMALL_STATE(1329)] = 57010, - [SMALL_STATE(1330)] = 57060, - [SMALL_STATE(1331)] = 57110, - [SMALL_STATE(1332)] = 57160, - [SMALL_STATE(1333)] = 57210, - [SMALL_STATE(1334)] = 57260, - [SMALL_STATE(1335)] = 57316, - [SMALL_STATE(1336)] = 57366, - [SMALL_STATE(1337)] = 57420, - [SMALL_STATE(1338)] = 57476, - [SMALL_STATE(1339)] = 57526, - [SMALL_STATE(1340)] = 57582, - [SMALL_STATE(1341)] = 57632, - [SMALL_STATE(1342)] = 57682, - [SMALL_STATE(1343)] = 57732, - [SMALL_STATE(1344)] = 57782, - [SMALL_STATE(1345)] = 57832, - [SMALL_STATE(1346)] = 57886, - [SMALL_STATE(1347)] = 57936, - [SMALL_STATE(1348)] = 57986, - [SMALL_STATE(1349)] = 58040, - [SMALL_STATE(1350)] = 58090, - [SMALL_STATE(1351)] = 58144, - [SMALL_STATE(1352)] = 58194, - [SMALL_STATE(1353)] = 58244, - [SMALL_STATE(1354)] = 58300, - [SMALL_STATE(1355)] = 58356, - [SMALL_STATE(1356)] = 58406, - [SMALL_STATE(1357)] = 58462, - [SMALL_STATE(1358)] = 58512, - [SMALL_STATE(1359)] = 58562, - [SMALL_STATE(1360)] = 58612, - [SMALL_STATE(1361)] = 58662, - [SMALL_STATE(1362)] = 58716, - [SMALL_STATE(1363)] = 58766, - [SMALL_STATE(1364)] = 58815, - [SMALL_STATE(1365)] = 58864, - [SMALL_STATE(1366)] = 58919, - [SMALL_STATE(1367)] = 58974, - [SMALL_STATE(1368)] = 59023, - [SMALL_STATE(1369)] = 59072, - [SMALL_STATE(1370)] = 59127, - [SMALL_STATE(1371)] = 59180, - [SMALL_STATE(1372)] = 59229, - [SMALL_STATE(1373)] = 59282, - [SMALL_STATE(1374)] = 59335, - [SMALL_STATE(1375)] = 59384, - [SMALL_STATE(1376)] = 59439, - [SMALL_STATE(1377)] = 59488, - [SMALL_STATE(1378)] = 59543, - [SMALL_STATE(1379)] = 59598, - [SMALL_STATE(1380)] = 59653, - [SMALL_STATE(1381)] = 59706, - [SMALL_STATE(1382)] = 59761, - [SMALL_STATE(1383)] = 59816, - [SMALL_STATE(1384)] = 59871, - [SMALL_STATE(1385)] = 59926, - [SMALL_STATE(1386)] = 59975, - [SMALL_STATE(1387)] = 60028, - [SMALL_STATE(1388)] = 60083, - [SMALL_STATE(1389)] = 60132, - [SMALL_STATE(1390)] = 60181, - [SMALL_STATE(1391)] = 60234, - [SMALL_STATE(1392)] = 60283, - [SMALL_STATE(1393)] = 60338, - [SMALL_STATE(1394)] = 60393, - [SMALL_STATE(1395)] = 60442, - [SMALL_STATE(1396)] = 60491, - [SMALL_STATE(1397)] = 60540, - [SMALL_STATE(1398)] = 60595, - [SMALL_STATE(1399)] = 60644, - [SMALL_STATE(1400)] = 60693, - [SMALL_STATE(1401)] = 60742, - [SMALL_STATE(1402)] = 60791, - [SMALL_STATE(1403)] = 60840, - [SMALL_STATE(1404)] = 60889, - [SMALL_STATE(1405)] = 60942, - [SMALL_STATE(1406)] = 60991, - [SMALL_STATE(1407)] = 61040, - [SMALL_STATE(1408)] = 61095, - [SMALL_STATE(1409)] = 61148, - [SMALL_STATE(1410)] = 61197, - [SMALL_STATE(1411)] = 61246, - [SMALL_STATE(1412)] = 61295, - [SMALL_STATE(1413)] = 61344, - [SMALL_STATE(1414)] = 61401, - [SMALL_STATE(1415)] = 61458, - [SMALL_STATE(1416)] = 61511, - [SMALL_STATE(1417)] = 61564, - [SMALL_STATE(1418)] = 61613, - [SMALL_STATE(1419)] = 61662, - [SMALL_STATE(1420)] = 61715, - [SMALL_STATE(1421)] = 61764, - [SMALL_STATE(1422)] = 61817, - [SMALL_STATE(1423)] = 61866, - [SMALL_STATE(1424)] = 61915, - [SMALL_STATE(1425)] = 61964, - [SMALL_STATE(1426)] = 62013, - [SMALL_STATE(1427)] = 62062, - [SMALL_STATE(1428)] = 62111, - [SMALL_STATE(1429)] = 62160, - [SMALL_STATE(1430)] = 62209, - [SMALL_STATE(1431)] = 62258, - [SMALL_STATE(1432)] = 62307, - [SMALL_STATE(1433)] = 62356, - [SMALL_STATE(1434)] = 62405, - [SMALL_STATE(1435)] = 62454, - [SMALL_STATE(1436)] = 62503, - [SMALL_STATE(1437)] = 62552, - [SMALL_STATE(1438)] = 62601, - [SMALL_STATE(1439)] = 62654, - [SMALL_STATE(1440)] = 62703, - [SMALL_STATE(1441)] = 62752, - [SMALL_STATE(1442)] = 62801, - [SMALL_STATE(1443)] = 62850, - [SMALL_STATE(1444)] = 62903, - [SMALL_STATE(1445)] = 62952, - [SMALL_STATE(1446)] = 63001, - [SMALL_STATE(1447)] = 63054, - [SMALL_STATE(1448)] = 63103, - [SMALL_STATE(1449)] = 63152, - [SMALL_STATE(1450)] = 63201, - [SMALL_STATE(1451)] = 63257, - [SMALL_STATE(1452)] = 63305, - [SMALL_STATE(1453)] = 63361, - [SMALL_STATE(1454)] = 63417, - [SMALL_STATE(1455)] = 63465, - [SMALL_STATE(1456)] = 63521, - [SMALL_STATE(1457)] = 63577, - [SMALL_STATE(1458)] = 63625, - [SMALL_STATE(1459)] = 63677, - [SMALL_STATE(1460)] = 63729, - [SMALL_STATE(1461)] = 63781, - [SMALL_STATE(1462)] = 63833, - [SMALL_STATE(1463)] = 63889, - [SMALL_STATE(1464)] = 63973, - [SMALL_STATE(1465)] = 64029, - [SMALL_STATE(1466)] = 64081, - [SMALL_STATE(1467)] = 64137, - [SMALL_STATE(1468)] = 64191, - [SMALL_STATE(1469)] = 64239, - [SMALL_STATE(1470)] = 64295, - [SMALL_STATE(1471)] = 64347, - [SMALL_STATE(1472)] = 64399, - [SMALL_STATE(1473)] = 64451, - [SMALL_STATE(1474)] = 64499, - [SMALL_STATE(1475)] = 64555, - [SMALL_STATE(1476)] = 64607, - [SMALL_STATE(1477)] = 64663, - [SMALL_STATE(1478)] = 64719, - [SMALL_STATE(1479)] = 64775, - [SMALL_STATE(1480)] = 64831, - [SMALL_STATE(1481)] = 64879, - [SMALL_STATE(1482)] = 64935, - [SMALL_STATE(1483)] = 64983, - [SMALL_STATE(1484)] = 65039, - [SMALL_STATE(1485)] = 65091, - [SMALL_STATE(1486)] = 65139, - [SMALL_STATE(1487)] = 65187, - [SMALL_STATE(1488)] = 65235, - [SMALL_STATE(1489)] = 65283, - [SMALL_STATE(1490)] = 65339, - [SMALL_STATE(1491)] = 65395, - [SMALL_STATE(1492)] = 65443, - [SMALL_STATE(1493)] = 65499, - [SMALL_STATE(1494)] = 65555, - [SMALL_STATE(1495)] = 65611, - [SMALL_STATE(1496)] = 65659, - [SMALL_STATE(1497)] = 65711, - [SMALL_STATE(1498)] = 65763, - [SMALL_STATE(1499)] = 65819, - [SMALL_STATE(1500)] = 65875, - [SMALL_STATE(1501)] = 65931, - [SMALL_STATE(1502)] = 65987, - [SMALL_STATE(1503)] = 66035, - [SMALL_STATE(1504)] = 66091, - [SMALL_STATE(1505)] = 66139, - [SMALL_STATE(1506)] = 66187, - [SMALL_STATE(1507)] = 66235, - [SMALL_STATE(1508)] = 66289, - [SMALL_STATE(1509)] = 66345, - [SMALL_STATE(1510)] = 66401, - [SMALL_STATE(1511)] = 66457, - [SMALL_STATE(1512)] = 66505, - [SMALL_STATE(1513)] = 66561, - [SMALL_STATE(1514)] = 66613, - [SMALL_STATE(1515)] = 66669, - [SMALL_STATE(1516)] = 66723, - [SMALL_STATE(1517)] = 66779, - [SMALL_STATE(1518)] = 66833, - [SMALL_STATE(1519)] = 66885, - [SMALL_STATE(1520)] = 66937, - [SMALL_STATE(1521)] = 66991, - [SMALL_STATE(1522)] = 67043, - [SMALL_STATE(1523)] = 67091, - [SMALL_STATE(1524)] = 67147, - [SMALL_STATE(1525)] = 67201, - [SMALL_STATE(1526)] = 67255, - [SMALL_STATE(1527)] = 67311, - [SMALL_STATE(1528)] = 67363, - [SMALL_STATE(1529)] = 67411, - [SMALL_STATE(1530)] = 67467, - [SMALL_STATE(1531)] = 67521, - [SMALL_STATE(1532)] = 67577, - [SMALL_STATE(1533)] = 67629, - [SMALL_STATE(1534)] = 67683, - [SMALL_STATE(1535)] = 67739, - [SMALL_STATE(1536)] = 67795, - [SMALL_STATE(1537)] = 67851, - [SMALL_STATE(1538)] = 67899, - [SMALL_STATE(1539)] = 67955, - [SMALL_STATE(1540)] = 68007, - [SMALL_STATE(1541)] = 68063, - [SMALL_STATE(1542)] = 68119, - [SMALL_STATE(1543)] = 68167, - [SMALL_STATE(1544)] = 68223, - [SMALL_STATE(1545)] = 68275, - [SMALL_STATE(1546)] = 68323, - [SMALL_STATE(1547)] = 68377, - [SMALL_STATE(1548)] = 68431, - [SMALL_STATE(1549)] = 68479, - [SMALL_STATE(1550)] = 68535, - [SMALL_STATE(1551)] = 68591, - [SMALL_STATE(1552)] = 68639, - [SMALL_STATE(1553)] = 68695, - [SMALL_STATE(1554)] = 68751, - [SMALL_STATE(1555)] = 68807, - [SMALL_STATE(1556)] = 68859, - [SMALL_STATE(1557)] = 68915, - [SMALL_STATE(1558)] = 68967, - [SMALL_STATE(1559)] = 69015, - [SMALL_STATE(1560)] = 69071, - [SMALL_STATE(1561)] = 69119, - [SMALL_STATE(1562)] = 69167, - [SMALL_STATE(1563)] = 69223, - [SMALL_STATE(1564)] = 69279, - [SMALL_STATE(1565)] = 69327, - [SMALL_STATE(1566)] = 69381, - [SMALL_STATE(1567)] = 69429, - [SMALL_STATE(1568)] = 69485, - [SMALL_STATE(1569)] = 69541, - [SMALL_STATE(1570)] = 69589, - [SMALL_STATE(1571)] = 69643, - [SMALL_STATE(1572)] = 69699, - [SMALL_STATE(1573)] = 69753, - [SMALL_STATE(1574)] = 69806, - [SMALL_STATE(1575)] = 69895, - [SMALL_STATE(1576)] = 69946, - [SMALL_STATE(1577)] = 69999, - [SMALL_STATE(1578)] = 70052, - [SMALL_STATE(1579)] = 70105, - [SMALL_STATE(1580)] = 70158, - [SMALL_STATE(1581)] = 70211, - [SMALL_STATE(1582)] = 70262, - [SMALL_STATE(1583)] = 70313, - [SMALL_STATE(1584)] = 70364, - [SMALL_STATE(1585)] = 70415, - [SMALL_STATE(1586)] = 70470, - [SMALL_STATE(1587)] = 70521, - [SMALL_STATE(1588)] = 70576, - [SMALL_STATE(1589)] = 70627, - [SMALL_STATE(1590)] = 70678, - [SMALL_STATE(1591)] = 70727, - [SMALL_STATE(1592)] = 70774, - [SMALL_STATE(1593)] = 70863, - [SMALL_STATE(1594)] = 70914, - [SMALL_STATE(1595)] = 70967, - [SMALL_STATE(1596)] = 71020, - [SMALL_STATE(1597)] = 71073, - [SMALL_STATE(1598)] = 71126, - [SMALL_STATE(1599)] = 71177, - [SMALL_STATE(1600)] = 71228, - [SMALL_STATE(1601)] = 71279, - [SMALL_STATE(1602)] = 71328, - [SMALL_STATE(1603)] = 71379, - [SMALL_STATE(1604)] = 71434, - [SMALL_STATE(1605)] = 71489, - [SMALL_STATE(1606)] = 71536, - [SMALL_STATE(1607)] = 71589, - [SMALL_STATE(1608)] = 71642, - [SMALL_STATE(1609)] = 71731, - [SMALL_STATE(1610)] = 71820, - [SMALL_STATE(1611)] = 71867, - [SMALL_STATE(1612)] = 71914, - [SMALL_STATE(1613)] = 71967, - [SMALL_STATE(1614)] = 72056, - [SMALL_STATE(1615)] = 72103, - [SMALL_STATE(1616)] = 72192, - [SMALL_STATE(1617)] = 72239, - [SMALL_STATE(1618)] = 72288, - [SMALL_STATE(1619)] = 72341, - [SMALL_STATE(1620)] = 72394, - [SMALL_STATE(1621)] = 72445, - [SMALL_STATE(1622)] = 72534, - [SMALL_STATE(1623)] = 72585, - [SMALL_STATE(1624)] = 72632, - [SMALL_STATE(1625)] = 72679, - [SMALL_STATE(1626)] = 72726, - [SMALL_STATE(1627)] = 72779, - [SMALL_STATE(1628)] = 72868, - [SMALL_STATE(1629)] = 72915, - [SMALL_STATE(1630)] = 72962, - [SMALL_STATE(1631)] = 73015, - [SMALL_STATE(1632)] = 73062, - [SMALL_STATE(1633)] = 73109, - [SMALL_STATE(1634)] = 73156, - [SMALL_STATE(1635)] = 73203, - [SMALL_STATE(1636)] = 73254, - [SMALL_STATE(1637)] = 73305, - [SMALL_STATE(1638)] = 73356, - [SMALL_STATE(1639)] = 73403, - [SMALL_STATE(1640)] = 73450, - [SMALL_STATE(1641)] = 73497, - [SMALL_STATE(1642)] = 73548, - [SMALL_STATE(1643)] = 73637, - [SMALL_STATE(1644)] = 73726, - [SMALL_STATE(1645)] = 73773, - [SMALL_STATE(1646)] = 73820, - [SMALL_STATE(1647)] = 73867, - [SMALL_STATE(1648)] = 73914, - [SMALL_STATE(1649)] = 73967, - [SMALL_STATE(1650)] = 74014, - [SMALL_STATE(1651)] = 74103, - [SMALL_STATE(1652)] = 74156, - [SMALL_STATE(1653)] = 74245, - [SMALL_STATE(1654)] = 74292, - [SMALL_STATE(1655)] = 74339, - [SMALL_STATE(1656)] = 74394, - [SMALL_STATE(1657)] = 74447, - [SMALL_STATE(1658)] = 74502, - [SMALL_STATE(1659)] = 74549, - [SMALL_STATE(1660)] = 74596, - [SMALL_STATE(1661)] = 74649, - [SMALL_STATE(1662)] = 74698, - [SMALL_STATE(1663)] = 74751, - [SMALL_STATE(1664)] = 74800, - [SMALL_STATE(1665)] = 74851, - [SMALL_STATE(1666)] = 74902, - [SMALL_STATE(1667)] = 74949, - [SMALL_STATE(1668)] = 74996, - [SMALL_STATE(1669)] = 75049, - [SMALL_STATE(1670)] = 75096, - [SMALL_STATE(1671)] = 75143, - [SMALL_STATE(1672)] = 75190, - [SMALL_STATE(1673)] = 75237, - [SMALL_STATE(1674)] = 75326, - [SMALL_STATE(1675)] = 75373, - [SMALL_STATE(1676)] = 75420, - [SMALL_STATE(1677)] = 75467, - [SMALL_STATE(1678)] = 75514, - [SMALL_STATE(1679)] = 75561, - [SMALL_STATE(1680)] = 75608, - [SMALL_STATE(1681)] = 75655, - [SMALL_STATE(1682)] = 75702, - [SMALL_STATE(1683)] = 75749, - [SMALL_STATE(1684)] = 75800, - [SMALL_STATE(1685)] = 75889, - [SMALL_STATE(1686)] = 75936, - [SMALL_STATE(1687)] = 76025, - [SMALL_STATE(1688)] = 76078, - [SMALL_STATE(1689)] = 76125, - [SMALL_STATE(1690)] = 76172, - [SMALL_STATE(1691)] = 76219, - [SMALL_STATE(1692)] = 76266, - [SMALL_STATE(1693)] = 76319, - [SMALL_STATE(1694)] = 76370, - [SMALL_STATE(1695)] = 76423, - [SMALL_STATE(1696)] = 76476, - [SMALL_STATE(1697)] = 76529, - [SMALL_STATE(1698)] = 76580, - [SMALL_STATE(1699)] = 76635, - [SMALL_STATE(1700)] = 76690, - [SMALL_STATE(1701)] = 76779, - [SMALL_STATE(1702)] = 76868, - [SMALL_STATE(1703)] = 76957, - [SMALL_STATE(1704)] = 77008, - [SMALL_STATE(1705)] = 77097, - [SMALL_STATE(1706)] = 77186, - [SMALL_STATE(1707)] = 77239, - [SMALL_STATE(1708)] = 77294, - [SMALL_STATE(1709)] = 77349, - [SMALL_STATE(1710)] = 77435, - [SMALL_STATE(1711)] = 77487, - [SMALL_STATE(1712)] = 77537, - [SMALL_STATE(1713)] = 77583, - [SMALL_STATE(1714)] = 77629, - [SMALL_STATE(1715)] = 77715, - [SMALL_STATE(1716)] = 77771, - [SMALL_STATE(1717)] = 77827, - [SMALL_STATE(1718)] = 77913, - [SMALL_STATE(1719)] = 77969, - [SMALL_STATE(1720)] = 78025, - [SMALL_STATE(1721)] = 78071, - [SMALL_STATE(1722)] = 78117, - [SMALL_STATE(1723)] = 78163, - [SMALL_STATE(1724)] = 78219, - [SMALL_STATE(1725)] = 78265, - [SMALL_STATE(1726)] = 78351, - [SMALL_STATE(1727)] = 78407, - [SMALL_STATE(1728)] = 78453, - [SMALL_STATE(1729)] = 78499, - [SMALL_STATE(1730)] = 78549, - [SMALL_STATE(1731)] = 78605, - [SMALL_STATE(1732)] = 78655, - [SMALL_STATE(1733)] = 78711, - [SMALL_STATE(1734)] = 78757, - [SMALL_STATE(1735)] = 78803, - [SMALL_STATE(1736)] = 78889, - [SMALL_STATE(1737)] = 78945, - [SMALL_STATE(1738)] = 79001, - [SMALL_STATE(1739)] = 79047, - [SMALL_STATE(1740)] = 79103, - [SMALL_STATE(1741)] = 79191, - [SMALL_STATE(1742)] = 79277, - [SMALL_STATE(1743)] = 79363, - [SMALL_STATE(1744)] = 79419, - [SMALL_STATE(1745)] = 79465, - [SMALL_STATE(1746)] = 79515, - [SMALL_STATE(1747)] = 79561, - [SMALL_STATE(1748)] = 79647, - [SMALL_STATE(1749)] = 79693, - [SMALL_STATE(1750)] = 79739, - [SMALL_STATE(1751)] = 79795, - [SMALL_STATE(1752)] = 79851, - [SMALL_STATE(1753)] = 79937, - [SMALL_STATE(1754)] = 80023, - [SMALL_STATE(1755)] = 80109, - [SMALL_STATE(1756)] = 80165, - [SMALL_STATE(1757)] = 80215, - [SMALL_STATE(1758)] = 80261, - [SMALL_STATE(1759)] = 80311, - [SMALL_STATE(1760)] = 80367, - [SMALL_STATE(1761)] = 80423, - [SMALL_STATE(1762)] = 80509, - [SMALL_STATE(1763)] = 80565, - [SMALL_STATE(1764)] = 80615, - [SMALL_STATE(1765)] = 80703, - [SMALL_STATE(1766)] = 80753, - [SMALL_STATE(1767)] = 80799, - [SMALL_STATE(1768)] = 80845, - [SMALL_STATE(1769)] = 80901, - [SMALL_STATE(1770)] = 80987, - [SMALL_STATE(1771)] = 81037, - [SMALL_STATE(1772)] = 81087, - [SMALL_STATE(1773)] = 81137, - [SMALL_STATE(1774)] = 81187, - [SMALL_STATE(1775)] = 81273, - [SMALL_STATE(1776)] = 81329, - [SMALL_STATE(1777)] = 81375, - [SMALL_STATE(1778)] = 81431, - [SMALL_STATE(1779)] = 81483, - [SMALL_STATE(1780)] = 81569, - [SMALL_STATE(1781)] = 81621, - [SMALL_STATE(1782)] = 81677, - [SMALL_STATE(1783)] = 81723, - [SMALL_STATE(1784)] = 81773, - [SMALL_STATE(1785)] = 81819, - [SMALL_STATE(1786)] = 81905, - [SMALL_STATE(1787)] = 81991, - [SMALL_STATE(1788)] = 82077, - [SMALL_STATE(1789)] = 82129, - [SMALL_STATE(1790)] = 82175, - [SMALL_STATE(1791)] = 82227, - [SMALL_STATE(1792)] = 82273, - [SMALL_STATE(1793)] = 82319, - [SMALL_STATE(1794)] = 82371, - [SMALL_STATE(1795)] = 82417, - [SMALL_STATE(1796)] = 82463, - [SMALL_STATE(1797)] = 82509, - [SMALL_STATE(1798)] = 82561, - [SMALL_STATE(1799)] = 82647, - [SMALL_STATE(1800)] = 82697, - [SMALL_STATE(1801)] = 82743, - [SMALL_STATE(1802)] = 82829, - [SMALL_STATE(1803)] = 82885, - [SMALL_STATE(1804)] = 82971, - [SMALL_STATE(1805)] = 83017, - [SMALL_STATE(1806)] = 83063, - [SMALL_STATE(1807)] = 83149, - [SMALL_STATE(1808)] = 83195, - [SMALL_STATE(1809)] = 83281, - [SMALL_STATE(1810)] = 83327, - [SMALL_STATE(1811)] = 83373, - [SMALL_STATE(1812)] = 83459, - [SMALL_STATE(1813)] = 83509, - [SMALL_STATE(1814)] = 83555, - [SMALL_STATE(1815)] = 83641, - [SMALL_STATE(1816)] = 83687, - [SMALL_STATE(1817)] = 83733, - [SMALL_STATE(1818)] = 83819, - [SMALL_STATE(1819)] = 83875, - [SMALL_STATE(1820)] = 83963, - [SMALL_STATE(1821)] = 84019, - [SMALL_STATE(1822)] = 84075, - [SMALL_STATE(1823)] = 84121, - [SMALL_STATE(1824)] = 84167, - [SMALL_STATE(1825)] = 84217, - [SMALL_STATE(1826)] = 84273, - [SMALL_STATE(1827)] = 84323, - [SMALL_STATE(1828)] = 84375, - [SMALL_STATE(1829)] = 84421, - [SMALL_STATE(1830)] = 84477, - [SMALL_STATE(1831)] = 84529, - [SMALL_STATE(1832)] = 84579, - [SMALL_STATE(1833)] = 84625, - [SMALL_STATE(1834)] = 84671, - [SMALL_STATE(1835)] = 84717, - [SMALL_STATE(1836)] = 84773, - [SMALL_STATE(1837)] = 84859, - [SMALL_STATE(1838)] = 84915, - [SMALL_STATE(1839)] = 84971, - [SMALL_STATE(1840)] = 85017, - [SMALL_STATE(1841)] = 85103, - [SMALL_STATE(1842)] = 85149, - [SMALL_STATE(1843)] = 85195, - [SMALL_STATE(1844)] = 85251, - [SMALL_STATE(1845)] = 85297, - [SMALL_STATE(1846)] = 85343, - [SMALL_STATE(1847)] = 85391, - [SMALL_STATE(1848)] = 85477, - [SMALL_STATE(1849)] = 85523, - [SMALL_STATE(1850)] = 85569, - [SMALL_STATE(1851)] = 85625, - [SMALL_STATE(1852)] = 85671, - [SMALL_STATE(1853)] = 85717, - [SMALL_STATE(1854)] = 85763, - [SMALL_STATE(1855)] = 85813, - [SMALL_STATE(1856)] = 85899, - [SMALL_STATE(1857)] = 85945, - [SMALL_STATE(1858)] = 85991, - [SMALL_STATE(1859)] = 86077, - [SMALL_STATE(1860)] = 86163, - [SMALL_STATE(1861)] = 86249, - [SMALL_STATE(1862)] = 86295, - [SMALL_STATE(1863)] = 86341, - [SMALL_STATE(1864)] = 86397, - [SMALL_STATE(1865)] = 86443, - [SMALL_STATE(1866)] = 86489, - [SMALL_STATE(1867)] = 86545, - [SMALL_STATE(1868)] = 86591, - [SMALL_STATE(1869)] = 86677, - [SMALL_STATE(1870)] = 86733, - [SMALL_STATE(1871)] = 86819, - [SMALL_STATE(1872)] = 86865, - [SMALL_STATE(1873)] = 86921, - [SMALL_STATE(1874)] = 86977, - [SMALL_STATE(1875)] = 87033, - [SMALL_STATE(1876)] = 87079, - [SMALL_STATE(1877)] = 87125, - [SMALL_STATE(1878)] = 87171, - [SMALL_STATE(1879)] = 87223, - [SMALL_STATE(1880)] = 87279, - [SMALL_STATE(1881)] = 87331, - [SMALL_STATE(1882)] = 87377, - [SMALL_STATE(1883)] = 87423, - [SMALL_STATE(1884)] = 87469, - [SMALL_STATE(1885)] = 87555, - [SMALL_STATE(1886)] = 87601, - [SMALL_STATE(1887)] = 87657, - [SMALL_STATE(1888)] = 87713, - [SMALL_STATE(1889)] = 87799, - [SMALL_STATE(1890)] = 87885, - [SMALL_STATE(1891)] = 87931, - [SMALL_STATE(1892)] = 87981, - [SMALL_STATE(1893)] = 88027, - [SMALL_STATE(1894)] = 88073, - [SMALL_STATE(1895)] = 88123, - [SMALL_STATE(1896)] = 88209, - [SMALL_STATE(1897)] = 88265, - [SMALL_STATE(1898)] = 88321, - [SMALL_STATE(1899)] = 88407, - [SMALL_STATE(1900)] = 88453, - [SMALL_STATE(1901)] = 88499, - [SMALL_STATE(1902)] = 88545, - [SMALL_STATE(1903)] = 88591, - [SMALL_STATE(1904)] = 88637, - [SMALL_STATE(1905)] = 88693, - [SMALL_STATE(1906)] = 88749, - [SMALL_STATE(1907)] = 88835, - [SMALL_STATE(1908)] = 88881, - [SMALL_STATE(1909)] = 88927, - [SMALL_STATE(1910)] = 88983, - [SMALL_STATE(1911)] = 89033, - [SMALL_STATE(1912)] = 89089, - [SMALL_STATE(1913)] = 89175, - [SMALL_STATE(1914)] = 89263, - [SMALL_STATE(1915)] = 89349, - [SMALL_STATE(1916)] = 89395, - [SMALL_STATE(1917)] = 89441, - [SMALL_STATE(1918)] = 89527, - [SMALL_STATE(1919)] = 89579, - [SMALL_STATE(1920)] = 89665, - [SMALL_STATE(1921)] = 89711, - [SMALL_STATE(1922)] = 89767, - [SMALL_STATE(1923)] = 89853, - [SMALL_STATE(1924)] = 89903, - [SMALL_STATE(1925)] = 89949, - [SMALL_STATE(1926)] = 89995, - [SMALL_STATE(1927)] = 90047, - [SMALL_STATE(1928)] = 90103, - [SMALL_STATE(1929)] = 90148, - [SMALL_STATE(1930)] = 90193, - [SMALL_STATE(1931)] = 90238, - [SMALL_STATE(1932)] = 90287, - [SMALL_STATE(1933)] = 90338, - [SMALL_STATE(1934)] = 90383, - [SMALL_STATE(1935)] = 90428, - [SMALL_STATE(1936)] = 90479, - [SMALL_STATE(1937)] = 90524, - [SMALL_STATE(1938)] = 90569, - [SMALL_STATE(1939)] = 90614, - [SMALL_STATE(1940)] = 90659, - [SMALL_STATE(1941)] = 90704, - [SMALL_STATE(1942)] = 90759, - [SMALL_STATE(1943)] = 90804, - [SMALL_STATE(1944)] = 90849, - [SMALL_STATE(1945)] = 90894, - [SMALL_STATE(1946)] = 90945, - [SMALL_STATE(1947)] = 90990, - [SMALL_STATE(1948)] = 91035, - [SMALL_STATE(1949)] = 91090, - [SMALL_STATE(1950)] = 91135, - [SMALL_STATE(1951)] = 91180, - [SMALL_STATE(1952)] = 91229, - [SMALL_STATE(1953)] = 91274, - [SMALL_STATE(1954)] = 91319, - [SMALL_STATE(1955)] = 91374, - [SMALL_STATE(1956)] = 91419, - [SMALL_STATE(1957)] = 91464, - [SMALL_STATE(1958)] = 91509, - [SMALL_STATE(1959)] = 91554, - [SMALL_STATE(1960)] = 91599, - [SMALL_STATE(1961)] = 91644, - [SMALL_STATE(1962)] = 91691, - [SMALL_STATE(1963)] = 91738, - [SMALL_STATE(1964)] = 91783, - [SMALL_STATE(1965)] = 91828, - [SMALL_STATE(1966)] = 91875, - [SMALL_STATE(1967)] = 91920, - [SMALL_STATE(1968)] = 91969, - [SMALL_STATE(1969)] = 92018, - [SMALL_STATE(1970)] = 92063, - [SMALL_STATE(1971)] = 92108, - [SMALL_STATE(1972)] = 92153, - [SMALL_STATE(1973)] = 92200, - [SMALL_STATE(1974)] = 92249, - [SMALL_STATE(1975)] = 92298, - [SMALL_STATE(1976)] = 92343, - [SMALL_STATE(1977)] = 92392, - [SMALL_STATE(1978)] = 92437, - [SMALL_STATE(1979)] = 92482, - [SMALL_STATE(1980)] = 92527, - [SMALL_STATE(1981)] = 92584, - [SMALL_STATE(1982)] = 92629, - [SMALL_STATE(1983)] = 92678, - [SMALL_STATE(1984)] = 92727, - [SMALL_STATE(1985)] = 92772, - [SMALL_STATE(1986)] = 92823, - [SMALL_STATE(1987)] = 92872, - [SMALL_STATE(1988)] = 92917, - [SMALL_STATE(1989)] = 92962, - [SMALL_STATE(1990)] = 93013, - [SMALL_STATE(1991)] = 93064, - [SMALL_STATE(1992)] = 93109, - [SMALL_STATE(1993)] = 93154, - [SMALL_STATE(1994)] = 93203, - [SMALL_STATE(1995)] = 93248, - [SMALL_STATE(1996)] = 93293, - [SMALL_STATE(1997)] = 93338, - [SMALL_STATE(1998)] = 93391, - [SMALL_STATE(1999)] = 93436, - [SMALL_STATE(2000)] = 93481, - [SMALL_STATE(2001)] = 93526, - [SMALL_STATE(2002)] = 93579, - [SMALL_STATE(2003)] = 93624, - [SMALL_STATE(2004)] = 93673, - [SMALL_STATE(2005)] = 93722, - [SMALL_STATE(2006)] = 93767, - [SMALL_STATE(2007)] = 93812, - [SMALL_STATE(2008)] = 93857, - [SMALL_STATE(2009)] = 93902, - [SMALL_STATE(2010)] = 93947, - [SMALL_STATE(2011)] = 93992, - [SMALL_STATE(2012)] = 94037, - [SMALL_STATE(2013)] = 94082, - [SMALL_STATE(2014)] = 94127, - [SMALL_STATE(2015)] = 94172, - [SMALL_STATE(2016)] = 94217, - [SMALL_STATE(2017)] = 94262, - [SMALL_STATE(2018)] = 94307, - [SMALL_STATE(2019)] = 94352, - [SMALL_STATE(2020)] = 94397, - [SMALL_STATE(2021)] = 94446, - [SMALL_STATE(2022)] = 94495, - [SMALL_STATE(2023)] = 94540, - [SMALL_STATE(2024)] = 94587, - [SMALL_STATE(2025)] = 94632, - [SMALL_STATE(2026)] = 94679, - [SMALL_STATE(2027)] = 94724, - [SMALL_STATE(2028)] = 94771, - [SMALL_STATE(2029)] = 94820, - [SMALL_STATE(2030)] = 94865, - [SMALL_STATE(2031)] = 94912, - [SMALL_STATE(2032)] = 94957, - [SMALL_STATE(2033)] = 95002, - [SMALL_STATE(2034)] = 95049, - [SMALL_STATE(2035)] = 95094, - [SMALL_STATE(2036)] = 95138, - [SMALL_STATE(2037)] = 95182, - [SMALL_STATE(2038)] = 95234, - [SMALL_STATE(2039)] = 95282, - [SMALL_STATE(2040)] = 95326, - [SMALL_STATE(2041)] = 95370, - [SMALL_STATE(2042)] = 95420, - [SMALL_STATE(2043)] = 95464, - [SMALL_STATE(2044)] = 95508, - [SMALL_STATE(2045)] = 95552, - [SMALL_STATE(2046)] = 95604, - [SMALL_STATE(2047)] = 95648, - [SMALL_STATE(2048)] = 95692, - [SMALL_STATE(2049)] = 95736, - [SMALL_STATE(2050)] = 95780, - [SMALL_STATE(2051)] = 95824, - [SMALL_STATE(2052)] = 95872, - [SMALL_STATE(2053)] = 95924, - [SMALL_STATE(2054)] = 95972, - [SMALL_STATE(2055)] = 96020, - [SMALL_STATE(2056)] = 96064, - [SMALL_STATE(2057)] = 96116, - [SMALL_STATE(2058)] = 96164, - [SMALL_STATE(2059)] = 96208, - [SMALL_STATE(2060)] = 96252, - [SMALL_STATE(2061)] = 96300, - [SMALL_STATE(2062)] = 96344, - [SMALL_STATE(2063)] = 96396, - [SMALL_STATE(2064)] = 96448, - [SMALL_STATE(2065)] = 96492, - [SMALL_STATE(2066)] = 96536, - [SMALL_STATE(2067)] = 96580, - [SMALL_STATE(2068)] = 96630, - [SMALL_STATE(2069)] = 96674, - [SMALL_STATE(2070)] = 96722, - [SMALL_STATE(2071)] = 96766, - [SMALL_STATE(2072)] = 96810, - [SMALL_STATE(2073)] = 96854, - [SMALL_STATE(2074)] = 96898, - [SMALL_STATE(2075)] = 96950, - [SMALL_STATE(2076)] = 97002, - [SMALL_STATE(2077)] = 97046, - [SMALL_STATE(2078)] = 97090, - [SMALL_STATE(2079)] = 97134, - [SMALL_STATE(2080)] = 97186, - [SMALL_STATE(2081)] = 97230, - [SMALL_STATE(2082)] = 97278, - [SMALL_STATE(2083)] = 97322, - [SMALL_STATE(2084)] = 97366, - [SMALL_STATE(2085)] = 97410, - [SMALL_STATE(2086)] = 97462, - [SMALL_STATE(2087)] = 97506, - [SMALL_STATE(2088)] = 97550, - [SMALL_STATE(2089)] = 97594, - [SMALL_STATE(2090)] = 97646, - [SMALL_STATE(2091)] = 97698, - [SMALL_STATE(2092)] = 97742, - [SMALL_STATE(2093)] = 97794, - [SMALL_STATE(2094)] = 97838, - [SMALL_STATE(2095)] = 97886, - [SMALL_STATE(2096)] = 97938, - [SMALL_STATE(2097)] = 97986, - [SMALL_STATE(2098)] = 98034, - [SMALL_STATE(2099)] = 98078, - [SMALL_STATE(2100)] = 98124, - [SMALL_STATE(2101)] = 98172, - [SMALL_STATE(2102)] = 98216, - [SMALL_STATE(2103)] = 98264, - [SMALL_STATE(2104)] = 98308, - [SMALL_STATE(2105)] = 98352, - [SMALL_STATE(2106)] = 98404, - [SMALL_STATE(2107)] = 98456, - [SMALL_STATE(2108)] = 98504, - [SMALL_STATE(2109)] = 98548, - [SMALL_STATE(2110)] = 98600, - [SMALL_STATE(2111)] = 98644, - [SMALL_STATE(2112)] = 98688, - [SMALL_STATE(2113)] = 98740, - [SMALL_STATE(2114)] = 98784, - [SMALL_STATE(2115)] = 98828, - [SMALL_STATE(2116)] = 98872, - [SMALL_STATE(2117)] = 98922, - [SMALL_STATE(2118)] = 98966, - [SMALL_STATE(2119)] = 99014, - [SMALL_STATE(2120)] = 99058, - [SMALL_STATE(2121)] = 99110, - [SMALL_STATE(2122)] = 99162, - [SMALL_STATE(2123)] = 99210, - [SMALL_STATE(2124)] = 99254, - [SMALL_STATE(2125)] = 99298, - [SMALL_STATE(2126)] = 99346, - [SMALL_STATE(2127)] = 99390, - [SMALL_STATE(2128)] = 99434, - [SMALL_STATE(2129)] = 99486, - [SMALL_STATE(2130)] = 99538, - [SMALL_STATE(2131)] = 99586, - [SMALL_STATE(2132)] = 99630, - [SMALL_STATE(2133)] = 99674, - [SMALL_STATE(2134)] = 99722, - [SMALL_STATE(2135)] = 99770, - [SMALL_STATE(2136)] = 99822, - [SMALL_STATE(2137)] = 99866, - [SMALL_STATE(2138)] = 99916, - [SMALL_STATE(2139)] = 99960, - [SMALL_STATE(2140)] = 100012, - [SMALL_STATE(2141)] = 100060, - [SMALL_STATE(2142)] = 100104, - [SMALL_STATE(2143)] = 100152, - [SMALL_STATE(2144)] = 100204, - [SMALL_STATE(2145)] = 100256, - [SMALL_STATE(2146)] = 100300, - [SMALL_STATE(2147)] = 100344, - [SMALL_STATE(2148)] = 100388, - [SMALL_STATE(2149)] = 100473, - [SMALL_STATE(2150)] = 100520, - [SMALL_STATE(2151)] = 100563, - [SMALL_STATE(2152)] = 100614, - [SMALL_STATE(2153)] = 100699, - [SMALL_STATE(2154)] = 100784, - [SMALL_STATE(2155)] = 100831, - [SMALL_STATE(2156)] = 100878, - [SMALL_STATE(2157)] = 100925, - [SMALL_STATE(2158)] = 101010, - [SMALL_STATE(2159)] = 101095, - [SMALL_STATE(2160)] = 101146, - [SMALL_STATE(2161)] = 101193, - [SMALL_STATE(2162)] = 101244, - [SMALL_STATE(2163)] = 101295, - [SMALL_STATE(2164)] = 101342, - [SMALL_STATE(2165)] = 101393, - [SMALL_STATE(2166)] = 101478, - [SMALL_STATE(2167)] = 101529, - [SMALL_STATE(2168)] = 101580, - [SMALL_STATE(2169)] = 101665, - [SMALL_STATE(2170)] = 101708, - [SMALL_STATE(2171)] = 101751, - [SMALL_STATE(2172)] = 101836, - [SMALL_STATE(2173)] = 101879, - [SMALL_STATE(2174)] = 101926, - [SMALL_STATE(2175)] = 102011, - [SMALL_STATE(2176)] = 102062, - [SMALL_STATE(2177)] = 102105, - [SMALL_STATE(2178)] = 102148, - [SMALL_STATE(2179)] = 102195, - [SMALL_STATE(2180)] = 102244, - [SMALL_STATE(2181)] = 102293, - [SMALL_STATE(2182)] = 102340, - [SMALL_STATE(2183)] = 102425, - [SMALL_STATE(2184)] = 102510, - [SMALL_STATE(2185)] = 102595, - [SMALL_STATE(2186)] = 102642, - [SMALL_STATE(2187)] = 102693, - [SMALL_STATE(2188)] = 102742, - [SMALL_STATE(2189)] = 102784, - [SMALL_STATE(2190)] = 102826, - [SMALL_STATE(2191)] = 102908, - [SMALL_STATE(2192)] = 102990, - [SMALL_STATE(2193)] = 103064, - [SMALL_STATE(2194)] = 103146, - [SMALL_STATE(2195)] = 103188, - [SMALL_STATE(2196)] = 103270, - [SMALL_STATE(2197)] = 103344, - [SMALL_STATE(2198)] = 103386, - [SMALL_STATE(2199)] = 103436, - [SMALL_STATE(2200)] = 103486, - [SMALL_STATE(2201)] = 103528, - [SMALL_STATE(2202)] = 103572, - [SMALL_STATE(2203)] = 103654, - [SMALL_STATE(2204)] = 103696, - [SMALL_STATE(2205)] = 103778, - [SMALL_STATE(2206)] = 103820, - [SMALL_STATE(2207)] = 103862, - [SMALL_STATE(2208)] = 103944, - [SMALL_STATE(2209)] = 104026, - [SMALL_STATE(2210)] = 104068, - [SMALL_STATE(2211)] = 104150, - [SMALL_STATE(2212)] = 104200, - [SMALL_STATE(2213)] = 104250, - [SMALL_STATE(2214)] = 104292, - [SMALL_STATE(2215)] = 104374, - [SMALL_STATE(2216)] = 104456, - [SMALL_STATE(2217)] = 104506, - [SMALL_STATE(2218)] = 104548, - [SMALL_STATE(2219)] = 104598, - [SMALL_STATE(2220)] = 104648, - [SMALL_STATE(2221)] = 104730, - [SMALL_STATE(2222)] = 104780, - [SMALL_STATE(2223)] = 104854, - [SMALL_STATE(2224)] = 104936, - [SMALL_STATE(2225)] = 104978, - [SMALL_STATE(2226)] = 105020, - [SMALL_STATE(2227)] = 105070, - [SMALL_STATE(2228)] = 105152, - [SMALL_STATE(2229)] = 105194, - [SMALL_STATE(2230)] = 105236, - [SMALL_STATE(2231)] = 105318, - [SMALL_STATE(2232)] = 105360, - [SMALL_STATE(2233)] = 105442, - [SMALL_STATE(2234)] = 105516, - [SMALL_STATE(2235)] = 105558, - [SMALL_STATE(2236)] = 105600, - [SMALL_STATE(2237)] = 105682, - [SMALL_STATE(2238)] = 105764, - [SMALL_STATE(2239)] = 105806, - [SMALL_STATE(2240)] = 105848, - [SMALL_STATE(2241)] = 105890, - [SMALL_STATE(2242)] = 105931, - [SMALL_STATE(2243)] = 106008, - [SMALL_STATE(2244)] = 106087, - [SMALL_STATE(2245)] = 106128, - [SMALL_STATE(2246)] = 106169, - [SMALL_STATE(2247)] = 106210, - [SMALL_STATE(2248)] = 106251, - [SMALL_STATE(2249)] = 106300, - [SMALL_STATE(2250)] = 106341, - [SMALL_STATE(2251)] = 106390, - [SMALL_STATE(2252)] = 106469, - [SMALL_STATE(2253)] = 106548, - [SMALL_STATE(2254)] = 106627, - [SMALL_STATE(2255)] = 106668, - [SMALL_STATE(2256)] = 106709, - [SMALL_STATE(2257)] = 106750, - [SMALL_STATE(2258)] = 106791, - [SMALL_STATE(2259)] = 106832, - [SMALL_STATE(2260)] = 106873, - [SMALL_STATE(2261)] = 106918, - [SMALL_STATE(2262)] = 106997, - [SMALL_STATE(2263)] = 107042, - [SMALL_STATE(2264)] = 107121, - [SMALL_STATE(2265)] = 107200, - [SMALL_STATE(2266)] = 107277, - [SMALL_STATE(2267)] = 107356, - [SMALL_STATE(2268)] = 107435, - [SMALL_STATE(2269)] = 107512, - [SMALL_STATE(2270)] = 107557, - [SMALL_STATE(2271)] = 107598, - [SMALL_STATE(2272)] = 107677, - [SMALL_STATE(2273)] = 107756, - [SMALL_STATE(2274)] = 107835, - [SMALL_STATE(2275)] = 107876, - [SMALL_STATE(2276)] = 107917, - [SMALL_STATE(2277)] = 107996, - [SMALL_STATE(2278)] = 108073, - [SMALL_STATE(2279)] = 108114, - [SMALL_STATE(2280)] = 108193, - [SMALL_STATE(2281)] = 108242, - [SMALL_STATE(2282)] = 108291, - [SMALL_STATE(2283)] = 108370, - [SMALL_STATE(2284)] = 108449, - [SMALL_STATE(2285)] = 108528, - [SMALL_STATE(2286)] = 108607, - [SMALL_STATE(2287)] = 108686, - [SMALL_STATE(2288)] = 108765, - [SMALL_STATE(2289)] = 108844, - [SMALL_STATE(2290)] = 108921, - [SMALL_STATE(2291)] = 109000, - [SMALL_STATE(2292)] = 109045, - [SMALL_STATE(2293)] = 109086, - [SMALL_STATE(2294)] = 109165, - [SMALL_STATE(2295)] = 109244, - [SMALL_STATE(2296)] = 109296, - [SMALL_STATE(2297)] = 109338, - [SMALL_STATE(2298)] = 109378, - [SMALL_STATE(2299)] = 109418, - [SMALL_STATE(2300)] = 109458, - [SMALL_STATE(2301)] = 109500, - [SMALL_STATE(2302)] = 109543, - [SMALL_STATE(2303)] = 109616, - [SMALL_STATE(2304)] = 109659, - [SMALL_STATE(2305)] = 109698, - [SMALL_STATE(2306)] = 109737, - [SMALL_STATE(2307)] = 109810, - [SMALL_STATE(2308)] = 109883, - [SMALL_STATE(2309)] = 109956, - [SMALL_STATE(2310)] = 110003, - [SMALL_STATE(2311)] = 110074, - [SMALL_STATE(2312)] = 110113, - [SMALL_STATE(2313)] = 110186, - [SMALL_STATE(2314)] = 110259, - [SMALL_STATE(2315)] = 110306, - [SMALL_STATE(2316)] = 110345, - [SMALL_STATE(2317)] = 110384, - [SMALL_STATE(2318)] = 110457, - [SMALL_STATE(2319)] = 110504, - [SMALL_STATE(2320)] = 110543, - [SMALL_STATE(2321)] = 110582, - [SMALL_STATE(2322)] = 110655, - [SMALL_STATE(2323)] = 110694, - [SMALL_STATE(2324)] = 110767, - [SMALL_STATE(2325)] = 110840, - [SMALL_STATE(2326)] = 110913, - [SMALL_STATE(2327)] = 110960, - [SMALL_STATE(2328)] = 111033, - [SMALL_STATE(2329)] = 111106, - [SMALL_STATE(2330)] = 111179, - [SMALL_STATE(2331)] = 111252, - [SMALL_STATE(2332)] = 111291, - [SMALL_STATE(2333)] = 111330, - [SMALL_STATE(2334)] = 111369, - [SMALL_STATE(2335)] = 111442, - [SMALL_STATE(2336)] = 111515, - [SMALL_STATE(2337)] = 111558, - [SMALL_STATE(2338)] = 111597, - [SMALL_STATE(2339)] = 111636, - [SMALL_STATE(2340)] = 111675, - [SMALL_STATE(2341)] = 111714, - [SMALL_STATE(2342)] = 111787, - [SMALL_STATE(2343)] = 111826, - [SMALL_STATE(2344)] = 111865, - [SMALL_STATE(2345)] = 111904, - [SMALL_STATE(2346)] = 111947, - [SMALL_STATE(2347)] = 111986, - [SMALL_STATE(2348)] = 112059, - [SMALL_STATE(2349)] = 112132, - [SMALL_STATE(2350)] = 112205, - [SMALL_STATE(2351)] = 112278, - [SMALL_STATE(2352)] = 112317, - [SMALL_STATE(2353)] = 112356, - [SMALL_STATE(2354)] = 112395, - [SMALL_STATE(2355)] = 112434, - [SMALL_STATE(2356)] = 112473, - [SMALL_STATE(2357)] = 112546, - [SMALL_STATE(2358)] = 112619, - [SMALL_STATE(2359)] = 112658, - [SMALL_STATE(2360)] = 112697, - [SMALL_STATE(2361)] = 112736, - [SMALL_STATE(2362)] = 112775, - [SMALL_STATE(2363)] = 112814, - [SMALL_STATE(2364)] = 112857, - [SMALL_STATE(2365)] = 112930, - [SMALL_STATE(2366)] = 113003, - [SMALL_STATE(2367)] = 113042, - [SMALL_STATE(2368)] = 113081, - [SMALL_STATE(2369)] = 113124, - [SMALL_STATE(2370)] = 113163, - [SMALL_STATE(2371)] = 113236, - [SMALL_STATE(2372)] = 113279, - [SMALL_STATE(2373)] = 113352, - [SMALL_STATE(2374)] = 113391, - [SMALL_STATE(2375)] = 113464, - [SMALL_STATE(2376)] = 113537, - [SMALL_STATE(2377)] = 113582, - [SMALL_STATE(2378)] = 113627, - [SMALL_STATE(2379)] = 113698, - [SMALL_STATE(2380)] = 113771, - [SMALL_STATE(2381)] = 113842, - [SMALL_STATE(2382)] = 113881, - [SMALL_STATE(2383)] = 113924, - [SMALL_STATE(2384)] = 113997, - [SMALL_STATE(2385)] = 114040, - [SMALL_STATE(2386)] = 114083, - [SMALL_STATE(2387)] = 114153, - [SMALL_STATE(2388)] = 114199, - [SMALL_STATE(2389)] = 114245, - [SMALL_STATE(2390)] = 114283, - [SMALL_STATE(2391)] = 114329, - [SMALL_STATE(2392)] = 114401, - [SMALL_STATE(2393)] = 114473, - [SMALL_STATE(2394)] = 114543, - [SMALL_STATE(2395)] = 114613, - [SMALL_STATE(2396)] = 114651, - [SMALL_STATE(2397)] = 114721, - [SMALL_STATE(2398)] = 114791, - [SMALL_STATE(2399)] = 114863, - [SMALL_STATE(2400)] = 114901, - [SMALL_STATE(2401)] = 114971, - [SMALL_STATE(2402)] = 115017, - [SMALL_STATE(2403)] = 115089, - [SMALL_STATE(2404)] = 115159, - [SMALL_STATE(2405)] = 115229, - [SMALL_STATE(2406)] = 115299, - [SMALL_STATE(2407)] = 115337, - [SMALL_STATE(2408)] = 115407, - [SMALL_STATE(2409)] = 115479, - [SMALL_STATE(2410)] = 115517, - [SMALL_STATE(2411)] = 115589, - [SMALL_STATE(2412)] = 115659, - [SMALL_STATE(2413)] = 115697, - [SMALL_STATE(2414)] = 115735, - [SMALL_STATE(2415)] = 115773, - [SMALL_STATE(2416)] = 115843, - [SMALL_STATE(2417)] = 115913, - [SMALL_STATE(2418)] = 115983, - [SMALL_STATE(2419)] = 116053, - [SMALL_STATE(2420)] = 116123, - [SMALL_STATE(2421)] = 116161, - [SMALL_STATE(2422)] = 116231, - [SMALL_STATE(2423)] = 116301, - [SMALL_STATE(2424)] = 116371, - [SMALL_STATE(2425)] = 116441, - [SMALL_STATE(2426)] = 116479, - [SMALL_STATE(2427)] = 116551, - [SMALL_STATE(2428)] = 116621, - [SMALL_STATE(2429)] = 116659, - [SMALL_STATE(2430)] = 116731, - [SMALL_STATE(2431)] = 116801, - [SMALL_STATE(2432)] = 116871, - [SMALL_STATE(2433)] = 116941, - [SMALL_STATE(2434)] = 117011, - [SMALL_STATE(2435)] = 117081, - [SMALL_STATE(2436)] = 117151, - [SMALL_STATE(2437)] = 117221, - [SMALL_STATE(2438)] = 117291, - [SMALL_STATE(2439)] = 117329, - [SMALL_STATE(2440)] = 117401, - [SMALL_STATE(2441)] = 117439, - [SMALL_STATE(2442)] = 117509, - [SMALL_STATE(2443)] = 117579, - [SMALL_STATE(2444)] = 117617, - [SMALL_STATE(2445)] = 117655, - [SMALL_STATE(2446)] = 117701, - [SMALL_STATE(2447)] = 117739, - [SMALL_STATE(2448)] = 117811, - [SMALL_STATE(2449)] = 117849, - [SMALL_STATE(2450)] = 117919, - [SMALL_STATE(2451)] = 117965, - [SMALL_STATE(2452)] = 118035, - [SMALL_STATE(2453)] = 118105, - [SMALL_STATE(2454)] = 118175, - [SMALL_STATE(2455)] = 118213, - [SMALL_STATE(2456)] = 118251, - [SMALL_STATE(2457)] = 118297, - [SMALL_STATE(2458)] = 118343, - [SMALL_STATE(2459)] = 118389, - [SMALL_STATE(2460)] = 118427, - [SMALL_STATE(2461)] = 118473, - [SMALL_STATE(2462)] = 118543, - [SMALL_STATE(2463)] = 118615, - [SMALL_STATE(2464)] = 118685, - [SMALL_STATE(2465)] = 118757, - [SMALL_STATE(2466)] = 118827, - [SMALL_STATE(2467)] = 118897, - [SMALL_STATE(2468)] = 118967, - [SMALL_STATE(2469)] = 119037, - [SMALL_STATE(2470)] = 119106, - [SMALL_STATE(2471)] = 119175, - [SMALL_STATE(2472)] = 119244, - [SMALL_STATE(2473)] = 119313, - [SMALL_STATE(2474)] = 119380, - [SMALL_STATE(2475)] = 119449, - [SMALL_STATE(2476)] = 119518, - [SMALL_STATE(2477)] = 119587, - [SMALL_STATE(2478)] = 119656, - [SMALL_STATE(2479)] = 119723, - [SMALL_STATE(2480)] = 119790, - [SMALL_STATE(2481)] = 119835, - [SMALL_STATE(2482)] = 119880, - [SMALL_STATE(2483)] = 119949, - [SMALL_STATE(2484)] = 119990, - [SMALL_STATE(2485)] = 120059, - [SMALL_STATE(2486)] = 120128, - [SMALL_STATE(2487)] = 120197, - [SMALL_STATE(2488)] = 120266, - [SMALL_STATE(2489)] = 120333, - [SMALL_STATE(2490)] = 120402, - [SMALL_STATE(2491)] = 120471, - [SMALL_STATE(2492)] = 120540, - [SMALL_STATE(2493)] = 120607, - [SMALL_STATE(2494)] = 120674, - [SMALL_STATE(2495)] = 120743, - [SMALL_STATE(2496)] = 120784, - [SMALL_STATE(2497)] = 120853, - [SMALL_STATE(2498)] = 120920, - [SMALL_STATE(2499)] = 120989, - [SMALL_STATE(2500)] = 121056, - [SMALL_STATE(2501)] = 121123, - [SMALL_STATE(2502)] = 121190, - [SMALL_STATE(2503)] = 121231, - [SMALL_STATE(2504)] = 121300, - [SMALL_STATE(2505)] = 121367, - [SMALL_STATE(2506)] = 121436, - [SMALL_STATE(2507)] = 121500, - [SMALL_STATE(2508)] = 121564, - [SMALL_STATE(2509)] = 121628, - [SMALL_STATE(2510)] = 121692, - [SMALL_STATE(2511)] = 121728, - [SMALL_STATE(2512)] = 121792, - [SMALL_STATE(2513)] = 121856, - [SMALL_STATE(2514)] = 121920, - [SMALL_STATE(2515)] = 121984, - [SMALL_STATE(2516)] = 122048, - [SMALL_STATE(2517)] = 122112, - [SMALL_STATE(2518)] = 122176, - [SMALL_STATE(2519)] = 122240, - [SMALL_STATE(2520)] = 122304, - [SMALL_STATE(2521)] = 122368, - [SMALL_STATE(2522)] = 122432, - [SMALL_STATE(2523)] = 122496, - [SMALL_STATE(2524)] = 122560, - [SMALL_STATE(2525)] = 122624, - [SMALL_STATE(2526)] = 122688, - [SMALL_STATE(2527)] = 122752, - [SMALL_STATE(2528)] = 122816, - [SMALL_STATE(2529)] = 122880, - [SMALL_STATE(2530)] = 122944, - [SMALL_STATE(2531)] = 122980, - [SMALL_STATE(2532)] = 123044, - [SMALL_STATE(2533)] = 123108, - [SMALL_STATE(2534)] = 123172, - [SMALL_STATE(2535)] = 123236, - [SMALL_STATE(2536)] = 123300, - [SMALL_STATE(2537)] = 123364, - [SMALL_STATE(2538)] = 123428, - [SMALL_STATE(2539)] = 123492, - [SMALL_STATE(2540)] = 123556, - [SMALL_STATE(2541)] = 123620, - [SMALL_STATE(2542)] = 123684, - [SMALL_STATE(2543)] = 123748, - [SMALL_STATE(2544)] = 123812, - [SMALL_STATE(2545)] = 123876, - [SMALL_STATE(2546)] = 123940, - [SMALL_STATE(2547)] = 124004, - [SMALL_STATE(2548)] = 124068, - [SMALL_STATE(2549)] = 124132, - [SMALL_STATE(2550)] = 124196, - [SMALL_STATE(2551)] = 124260, - [SMALL_STATE(2552)] = 124324, - [SMALL_STATE(2553)] = 124388, - [SMALL_STATE(2554)] = 124452, - [SMALL_STATE(2555)] = 124516, - [SMALL_STATE(2556)] = 124580, - [SMALL_STATE(2557)] = 124644, - [SMALL_STATE(2558)] = 124708, - [SMALL_STATE(2559)] = 124772, - [SMALL_STATE(2560)] = 124836, - [SMALL_STATE(2561)] = 124900, - [SMALL_STATE(2562)] = 124964, - [SMALL_STATE(2563)] = 125028, - [SMALL_STATE(2564)] = 125092, - [SMALL_STATE(2565)] = 125156, - [SMALL_STATE(2566)] = 125220, - [SMALL_STATE(2567)] = 125284, - [SMALL_STATE(2568)] = 125348, - [SMALL_STATE(2569)] = 125412, - [SMALL_STATE(2570)] = 125476, - [SMALL_STATE(2571)] = 125540, - [SMALL_STATE(2572)] = 125604, - [SMALL_STATE(2573)] = 125668, - [SMALL_STATE(2574)] = 125732, - [SMALL_STATE(2575)] = 125796, - [SMALL_STATE(2576)] = 125860, - [SMALL_STATE(2577)] = 125924, - [SMALL_STATE(2578)] = 125988, - [SMALL_STATE(2579)] = 126052, - [SMALL_STATE(2580)] = 126116, - [SMALL_STATE(2581)] = 126180, - [SMALL_STATE(2582)] = 126244, - [SMALL_STATE(2583)] = 126308, - [SMALL_STATE(2584)] = 126372, - [SMALL_STATE(2585)] = 126436, - [SMALL_STATE(2586)] = 126500, - [SMALL_STATE(2587)] = 126564, - [SMALL_STATE(2588)] = 126628, - [SMALL_STATE(2589)] = 126692, - [SMALL_STATE(2590)] = 126756, - [SMALL_STATE(2591)] = 126820, - [SMALL_STATE(2592)] = 126884, - [SMALL_STATE(2593)] = 126948, - [SMALL_STATE(2594)] = 127012, - [SMALL_STATE(2595)] = 127076, - [SMALL_STATE(2596)] = 127140, - [SMALL_STATE(2597)] = 127204, - [SMALL_STATE(2598)] = 127268, - [SMALL_STATE(2599)] = 127332, - [SMALL_STATE(2600)] = 127396, - [SMALL_STATE(2601)] = 127460, - [SMALL_STATE(2602)] = 127524, - [SMALL_STATE(2603)] = 127588, - [SMALL_STATE(2604)] = 127630, - [SMALL_STATE(2605)] = 127694, - [SMALL_STATE(2606)] = 127730, - [SMALL_STATE(2607)] = 127794, - [SMALL_STATE(2608)] = 127858, - [SMALL_STATE(2609)] = 127922, - [SMALL_STATE(2610)] = 127986, - [SMALL_STATE(2611)] = 128050, - [SMALL_STATE(2612)] = 128114, - [SMALL_STATE(2613)] = 128150, - [SMALL_STATE(2614)] = 128214, - [SMALL_STATE(2615)] = 128278, - [SMALL_STATE(2616)] = 128342, - [SMALL_STATE(2617)] = 128406, - [SMALL_STATE(2618)] = 128470, - [SMALL_STATE(2619)] = 128534, - [SMALL_STATE(2620)] = 128598, - [SMALL_STATE(2621)] = 128662, - [SMALL_STATE(2622)] = 128726, - [SMALL_STATE(2623)] = 128790, - [SMALL_STATE(2624)] = 128854, - [SMALL_STATE(2625)] = 128918, - [SMALL_STATE(2626)] = 128982, - [SMALL_STATE(2627)] = 129046, - [SMALL_STATE(2628)] = 129110, - [SMALL_STATE(2629)] = 129174, - [SMALL_STATE(2630)] = 129238, - [SMALL_STATE(2631)] = 129302, - [SMALL_STATE(2632)] = 129366, - [SMALL_STATE(2633)] = 129430, - [SMALL_STATE(2634)] = 129494, - [SMALL_STATE(2635)] = 129558, - [SMALL_STATE(2636)] = 129622, - [SMALL_STATE(2637)] = 129686, - [SMALL_STATE(2638)] = 129750, - [SMALL_STATE(2639)] = 129814, - [SMALL_STATE(2640)] = 129878, - [SMALL_STATE(2641)] = 129942, - [SMALL_STATE(2642)] = 130006, - [SMALL_STATE(2643)] = 130070, - [SMALL_STATE(2644)] = 130134, - [SMALL_STATE(2645)] = 130198, - [SMALL_STATE(2646)] = 130262, - [SMALL_STATE(2647)] = 130326, - [SMALL_STATE(2648)] = 130390, - [SMALL_STATE(2649)] = 130454, - [SMALL_STATE(2650)] = 130518, - [SMALL_STATE(2651)] = 130582, - [SMALL_STATE(2652)] = 130646, - [SMALL_STATE(2653)] = 130710, - [SMALL_STATE(2654)] = 130774, - [SMALL_STATE(2655)] = 130838, - [SMALL_STATE(2656)] = 130902, - [SMALL_STATE(2657)] = 130966, - [SMALL_STATE(2658)] = 131030, - [SMALL_STATE(2659)] = 131094, - [SMALL_STATE(2660)] = 131158, - [SMALL_STATE(2661)] = 131222, - [SMALL_STATE(2662)] = 131286, - [SMALL_STATE(2663)] = 131350, - [SMALL_STATE(2664)] = 131414, - [SMALL_STATE(2665)] = 131478, - [SMALL_STATE(2666)] = 131542, - [SMALL_STATE(2667)] = 131606, - [SMALL_STATE(2668)] = 131670, - [SMALL_STATE(2669)] = 131734, - [SMALL_STATE(2670)] = 131798, - [SMALL_STATE(2671)] = 131862, - [SMALL_STATE(2672)] = 131926, - [SMALL_STATE(2673)] = 131990, - [SMALL_STATE(2674)] = 132054, - [SMALL_STATE(2675)] = 132118, - [SMALL_STATE(2676)] = 132182, - [SMALL_STATE(2677)] = 132246, - [SMALL_STATE(2678)] = 132310, - [SMALL_STATE(2679)] = 132374, - [SMALL_STATE(2680)] = 132438, - [SMALL_STATE(2681)] = 132502, - [SMALL_STATE(2682)] = 132566, - [SMALL_STATE(2683)] = 132630, - [SMALL_STATE(2684)] = 132694, - [SMALL_STATE(2685)] = 132758, - [SMALL_STATE(2686)] = 132822, - [SMALL_STATE(2687)] = 132886, - [SMALL_STATE(2688)] = 132950, - [SMALL_STATE(2689)] = 133014, - [SMALL_STATE(2690)] = 133078, - [SMALL_STATE(2691)] = 133142, - [SMALL_STATE(2692)] = 133206, - [SMALL_STATE(2693)] = 133270, - [SMALL_STATE(2694)] = 133334, - [SMALL_STATE(2695)] = 133398, - [SMALL_STATE(2696)] = 133462, - [SMALL_STATE(2697)] = 133526, - [SMALL_STATE(2698)] = 133590, - [SMALL_STATE(2699)] = 133654, - [SMALL_STATE(2700)] = 133718, - [SMALL_STATE(2701)] = 133782, - [SMALL_STATE(2702)] = 133846, - [SMALL_STATE(2703)] = 133910, - [SMALL_STATE(2704)] = 133974, - [SMALL_STATE(2705)] = 134038, - [SMALL_STATE(2706)] = 134102, - [SMALL_STATE(2707)] = 134166, - [SMALL_STATE(2708)] = 134230, - [SMALL_STATE(2709)] = 134294, - [SMALL_STATE(2710)] = 134358, - [SMALL_STATE(2711)] = 134397, - [SMALL_STATE(2712)] = 134448, - [SMALL_STATE(2713)] = 134489, - [SMALL_STATE(2714)] = 134530, - [SMALL_STATE(2715)] = 134571, - [SMALL_STATE(2716)] = 134616, - [SMALL_STATE(2717)] = 134667, - [SMALL_STATE(2718)] = 134708, - [SMALL_STATE(2719)] = 134749, - [SMALL_STATE(2720)] = 134786, - [SMALL_STATE(2721)] = 134831, - [SMALL_STATE(2722)] = 134872, - [SMALL_STATE(2723)] = 134913, - [SMALL_STATE(2724)] = 134954, - [SMALL_STATE(2725)] = 134995, - [SMALL_STATE(2726)] = 135036, - [SMALL_STATE(2727)] = 135076, - [SMALL_STATE(2728)] = 135126, - [SMALL_STATE(2729)] = 135160, - [SMALL_STATE(2730)] = 135194, - [SMALL_STATE(2731)] = 135228, - [SMALL_STATE(2732)] = 135262, - [SMALL_STATE(2733)] = 135296, - [SMALL_STATE(2734)] = 135336, - [SMALL_STATE(2735)] = 135370, - [SMALL_STATE(2736)] = 135404, - [SMALL_STATE(2737)] = 135438, - [SMALL_STATE(2738)] = 135472, - [SMALL_STATE(2739)] = 135510, - [SMALL_STATE(2740)] = 135544, - [SMALL_STATE(2741)] = 135578, - [SMALL_STATE(2742)] = 135612, - [SMALL_STATE(2743)] = 135652, - [SMALL_STATE(2744)] = 135686, - [SMALL_STATE(2745)] = 135726, - [SMALL_STATE(2746)] = 135760, - [SMALL_STATE(2747)] = 135794, - [SMALL_STATE(2748)] = 135828, - [SMALL_STATE(2749)] = 135878, - [SMALL_STATE(2750)] = 135918, - [SMALL_STATE(2751)] = 135954, - [SMALL_STATE(2752)] = 135988, - [SMALL_STATE(2753)] = 136028, - [SMALL_STATE(2754)] = 136062, - [SMALL_STATE(2755)] = 136096, - [SMALL_STATE(2756)] = 136130, - [SMALL_STATE(2757)] = 136168, - [SMALL_STATE(2758)] = 136202, - [SMALL_STATE(2759)] = 136240, - [SMALL_STATE(2760)] = 136278, - [SMALL_STATE(2761)] = 136312, - [SMALL_STATE(2762)] = 136346, - [SMALL_STATE(2763)] = 136386, - [SMALL_STATE(2764)] = 136420, - [SMALL_STATE(2765)] = 136454, - [SMALL_STATE(2766)] = 136494, - [SMALL_STATE(2767)] = 136534, - [SMALL_STATE(2768)] = 136568, - [SMALL_STATE(2769)] = 136602, - [SMALL_STATE(2770)] = 136636, - [SMALL_STATE(2771)] = 136670, - [SMALL_STATE(2772)] = 136704, - [SMALL_STATE(2773)] = 136738, - [SMALL_STATE(2774)] = 136778, - [SMALL_STATE(2775)] = 136812, - [SMALL_STATE(2776)] = 136846, - [SMALL_STATE(2777)] = 136886, - [SMALL_STATE(2778)] = 136926, - [SMALL_STATE(2779)] = 136960, - [SMALL_STATE(2780)] = 137000, - [SMALL_STATE(2781)] = 137044, - [SMALL_STATE(2782)] = 137078, - [SMALL_STATE(2783)] = 137112, - [SMALL_STATE(2784)] = 137156, - [SMALL_STATE(2785)] = 137190, - [SMALL_STATE(2786)] = 137224, - [SMALL_STATE(2787)] = 137264, - [SMALL_STATE(2788)] = 137304, - [SMALL_STATE(2789)] = 137342, - [SMALL_STATE(2790)] = 137376, - [SMALL_STATE(2791)] = 137416, - [SMALL_STATE(2792)] = 137456, - [SMALL_STATE(2793)] = 137496, - [SMALL_STATE(2794)] = 137530, - [SMALL_STATE(2795)] = 137569, - [SMALL_STATE(2796)] = 137608, - [SMALL_STATE(2797)] = 137643, - [SMALL_STATE(2798)] = 137686, - [SMALL_STATE(2799)] = 137735, - [SMALL_STATE(2800)] = 137774, - [SMALL_STATE(2801)] = 137817, - [SMALL_STATE(2802)] = 137874, - [SMALL_STATE(2803)] = 137931, - [SMALL_STATE(2804)] = 137988, - [SMALL_STATE(2805)] = 138027, - [SMALL_STATE(2806)] = 138066, - [SMALL_STATE(2807)] = 138099, - [SMALL_STATE(2808)] = 138148, - [SMALL_STATE(2809)] = 138181, - [SMALL_STATE(2810)] = 138224, - [SMALL_STATE(2811)] = 138257, - [SMALL_STATE(2812)] = 138296, - [SMALL_STATE(2813)] = 138335, - [SMALL_STATE(2814)] = 138372, - [SMALL_STATE(2815)] = 138407, - [SMALL_STATE(2816)] = 138440, - [SMALL_STATE(2817)] = 138479, - [SMALL_STATE(2818)] = 138512, - [SMALL_STATE(2819)] = 138545, - [SMALL_STATE(2820)] = 138584, - [SMALL_STATE(2821)] = 138623, - [SMALL_STATE(2822)] = 138672, - [SMALL_STATE(2823)] = 138705, - [SMALL_STATE(2824)] = 138738, - [SMALL_STATE(2825)] = 138771, - [SMALL_STATE(2826)] = 138808, - [SMALL_STATE(2827)] = 138847, - [SMALL_STATE(2828)] = 138880, - [SMALL_STATE(2829)] = 138913, - [SMALL_STATE(2830)] = 138970, - [SMALL_STATE(2831)] = 139009, - [SMALL_STATE(2832)] = 139048, - [SMALL_STATE(2833)] = 139087, - [SMALL_STATE(2834)] = 139136, - [SMALL_STATE(2835)] = 139193, - [SMALL_STATE(2836)] = 139232, - [SMALL_STATE(2837)] = 139271, - [SMALL_STATE(2838)] = 139304, - [SMALL_STATE(2839)] = 139337, - [SMALL_STATE(2840)] = 139370, - [SMALL_STATE(2841)] = 139403, - [SMALL_STATE(2842)] = 139440, - [SMALL_STATE(2843)] = 139473, - [SMALL_STATE(2844)] = 139506, - [SMALL_STATE(2845)] = 139539, - [SMALL_STATE(2846)] = 139576, - [SMALL_STATE(2847)] = 139609, - [SMALL_STATE(2848)] = 139646, - [SMALL_STATE(2849)] = 139685, - [SMALL_STATE(2850)] = 139718, - [SMALL_STATE(2851)] = 139751, - [SMALL_STATE(2852)] = 139800, - [SMALL_STATE(2853)] = 139833, - [SMALL_STATE(2854)] = 139866, - [SMALL_STATE(2855)] = 139909, - [SMALL_STATE(2856)] = 139958, - [SMALL_STATE(2857)] = 139997, - [SMALL_STATE(2858)] = 140036, - [SMALL_STATE(2859)] = 140069, - [SMALL_STATE(2860)] = 140126, - [SMALL_STATE(2861)] = 140165, - [SMALL_STATE(2862)] = 140204, - [SMALL_STATE(2863)] = 140237, - [SMALL_STATE(2864)] = 140270, - [SMALL_STATE(2865)] = 140307, - [SMALL_STATE(2866)] = 140364, - [SMALL_STATE(2867)] = 140403, - [SMALL_STATE(2868)] = 140436, - [SMALL_STATE(2869)] = 140475, - [SMALL_STATE(2870)] = 140514, - [SMALL_STATE(2871)] = 140553, - [SMALL_STATE(2872)] = 140590, - [SMALL_STATE(2873)] = 140647, - [SMALL_STATE(2874)] = 140690, - [SMALL_STATE(2875)] = 140725, - [SMALL_STATE(2876)] = 140758, - [SMALL_STATE(2877)] = 140795, - [SMALL_STATE(2878)] = 140828, - [SMALL_STATE(2879)] = 140861, - [SMALL_STATE(2880)] = 140894, - [SMALL_STATE(2881)] = 140927, - [SMALL_STATE(2882)] = 140960, - [SMALL_STATE(2883)] = 141017, - [SMALL_STATE(2884)] = 141056, - [SMALL_STATE(2885)] = 141095, - [SMALL_STATE(2886)] = 141134, - [SMALL_STATE(2887)] = 141173, - [SMALL_STATE(2888)] = 141206, - [SMALL_STATE(2889)] = 141239, - [SMALL_STATE(2890)] = 141272, - [SMALL_STATE(2891)] = 141311, - [SMALL_STATE(2892)] = 141350, - [SMALL_STATE(2893)] = 141389, - [SMALL_STATE(2894)] = 141422, - [SMALL_STATE(2895)] = 141461, - [SMALL_STATE(2896)] = 141498, - [SMALL_STATE(2897)] = 141531, - [SMALL_STATE(2898)] = 141570, - [SMALL_STATE(2899)] = 141603, - [SMALL_STATE(2900)] = 141642, - [SMALL_STATE(2901)] = 141681, - [SMALL_STATE(2902)] = 141714, - [SMALL_STATE(2903)] = 141757, - [SMALL_STATE(2904)] = 141790, - [SMALL_STATE(2905)] = 141823, - [SMALL_STATE(2906)] = 141857, - [SMALL_STATE(2907)] = 141895, - [SMALL_STATE(2908)] = 141927, - [SMALL_STATE(2909)] = 141959, - [SMALL_STATE(2910)] = 142005, - [SMALL_STATE(2911)] = 142037, - [SMALL_STATE(2912)] = 142069, - [SMALL_STATE(2913)] = 142115, - [SMALL_STATE(2914)] = 142153, - [SMALL_STATE(2915)] = 142199, - [SMALL_STATE(2916)] = 142237, - [SMALL_STATE(2917)] = 142275, - [SMALL_STATE(2918)] = 142313, - [SMALL_STATE(2919)] = 142351, - [SMALL_STATE(2920)] = 142389, - [SMALL_STATE(2921)] = 142427, - [SMALL_STATE(2922)] = 142465, - [SMALL_STATE(2923)] = 142497, - [SMALL_STATE(2924)] = 142529, - [SMALL_STATE(2925)] = 142567, - [SMALL_STATE(2926)] = 142605, - [SMALL_STATE(2927)] = 142637, - [SMALL_STATE(2928)] = 142675, - [SMALL_STATE(2929)] = 142707, - [SMALL_STATE(2930)] = 142739, - [SMALL_STATE(2931)] = 142777, - [SMALL_STATE(2932)] = 142809, - [SMALL_STATE(2933)] = 142847, - [SMALL_STATE(2934)] = 142879, - [SMALL_STATE(2935)] = 142925, - [SMALL_STATE(2936)] = 142963, - [SMALL_STATE(2937)] = 143009, - [SMALL_STATE(2938)] = 143063, - [SMALL_STATE(2939)] = 143095, - [SMALL_STATE(2940)] = 143127, - [SMALL_STATE(2941)] = 143165, - [SMALL_STATE(2942)] = 143207, - [SMALL_STATE(2943)] = 143245, - [SMALL_STATE(2944)] = 143299, - [SMALL_STATE(2945)] = 143353, - [SMALL_STATE(2946)] = 143389, - [SMALL_STATE(2947)] = 143421, - [SMALL_STATE(2948)] = 143459, - [SMALL_STATE(2949)] = 143513, - [SMALL_STATE(2950)] = 143545, - [SMALL_STATE(2951)] = 143583, - [SMALL_STATE(2952)] = 143615, - [SMALL_STATE(2953)] = 143647, - [SMALL_STATE(2954)] = 143689, - [SMALL_STATE(2955)] = 143735, - [SMALL_STATE(2956)] = 143773, - [SMALL_STATE(2957)] = 143819, - [SMALL_STATE(2958)] = 143873, - [SMALL_STATE(2959)] = 143905, - [SMALL_STATE(2960)] = 143951, - [SMALL_STATE(2961)] = 143989, - [SMALL_STATE(2962)] = 144021, - [SMALL_STATE(2963)] = 144053, - [SMALL_STATE(2964)] = 144107, - [SMALL_STATE(2965)] = 144139, - [SMALL_STATE(2966)] = 144177, - [SMALL_STATE(2967)] = 144215, - [SMALL_STATE(2968)] = 144269, - [SMALL_STATE(2969)] = 144301, - [SMALL_STATE(2970)] = 144333, - [SMALL_STATE(2971)] = 144371, - [SMALL_STATE(2972)] = 144409, - [SMALL_STATE(2973)] = 144447, - [SMALL_STATE(2974)] = 144485, - [SMALL_STATE(2975)] = 144523, - [SMALL_STATE(2976)] = 144555, - [SMALL_STATE(2977)] = 144609, - [SMALL_STATE(2978)] = 144647, - [SMALL_STATE(2979)] = 144701, - [SMALL_STATE(2980)] = 144733, - [SMALL_STATE(2981)] = 144765, - [SMALL_STATE(2982)] = 144797, - [SMALL_STATE(2983)] = 144829, - [SMALL_STATE(2984)] = 144867, - [SMALL_STATE(2985)] = 144898, - [SMALL_STATE(2986)] = 144929, - [SMALL_STATE(2987)] = 144960, - [SMALL_STATE(2988)] = 144995, - [SMALL_STATE(2989)] = 145026, - [SMALL_STATE(2990)] = 145063, - [SMALL_STATE(2991)] = 145094, - [SMALL_STATE(2992)] = 145125, - [SMALL_STATE(2993)] = 145156, - [SMALL_STATE(2994)] = 145187, - [SMALL_STATE(2995)] = 145218, - [SMALL_STATE(2996)] = 145249, - [SMALL_STATE(2997)] = 145280, - [SMALL_STATE(2998)] = 145311, - [SMALL_STATE(2999)] = 145348, - [SMALL_STATE(3000)] = 145383, - [SMALL_STATE(3001)] = 145414, - [SMALL_STATE(3002)] = 145445, - [SMALL_STATE(3003)] = 145476, - [SMALL_STATE(3004)] = 145507, - [SMALL_STATE(3005)] = 145538, - [SMALL_STATE(3006)] = 145573, - [SMALL_STATE(3007)] = 145610, - [SMALL_STATE(3008)] = 145647, - [SMALL_STATE(3009)] = 145678, - [SMALL_STATE(3010)] = 145709, - [SMALL_STATE(3011)] = 145746, - [SMALL_STATE(3012)] = 145777, - [SMALL_STATE(3013)] = 145808, - [SMALL_STATE(3014)] = 145839, - [SMALL_STATE(3015)] = 145870, - [SMALL_STATE(3016)] = 145901, - [SMALL_STATE(3017)] = 145938, - [SMALL_STATE(3018)] = 145975, - [SMALL_STATE(3019)] = 146006, - [SMALL_STATE(3020)] = 146037, - [SMALL_STATE(3021)] = 146074, - [SMALL_STATE(3022)] = 146105, - [SMALL_STATE(3023)] = 146136, - [SMALL_STATE(3024)] = 146167, - [SMALL_STATE(3025)] = 146204, - [SMALL_STATE(3026)] = 146235, - [SMALL_STATE(3027)] = 146266, - [SMALL_STATE(3028)] = 146297, - [SMALL_STATE(3029)] = 146328, - [SMALL_STATE(3030)] = 146359, - [SMALL_STATE(3031)] = 146396, - [SMALL_STATE(3032)] = 146427, - [SMALL_STATE(3033)] = 146464, - [SMALL_STATE(3034)] = 146495, - [SMALL_STATE(3035)] = 146532, - [SMALL_STATE(3036)] = 146563, - [SMALL_STATE(3037)] = 146594, - [SMALL_STATE(3038)] = 146625, - [SMALL_STATE(3039)] = 146656, - [SMALL_STATE(3040)] = 146687, - [SMALL_STATE(3041)] = 146718, - [SMALL_STATE(3042)] = 146749, - [SMALL_STATE(3043)] = 146780, - [SMALL_STATE(3044)] = 146811, - [SMALL_STATE(3045)] = 146842, - [SMALL_STATE(3046)] = 146873, - [SMALL_STATE(3047)] = 146904, - [SMALL_STATE(3048)] = 146951, - [SMALL_STATE(3049)] = 146982, - [SMALL_STATE(3050)] = 147019, - [SMALL_STATE(3051)] = 147050, - [SMALL_STATE(3052)] = 147081, - [SMALL_STATE(3053)] = 147112, - [SMALL_STATE(3054)] = 147143, - [SMALL_STATE(3055)] = 147174, - [SMALL_STATE(3056)] = 147205, - [SMALL_STATE(3057)] = 147236, - [SMALL_STATE(3058)] = 147267, - [SMALL_STATE(3059)] = 147298, - [SMALL_STATE(3060)] = 147335, - [SMALL_STATE(3061)] = 147372, - [SMALL_STATE(3062)] = 147403, - [SMALL_STATE(3063)] = 147434, - [SMALL_STATE(3064)] = 147465, - [SMALL_STATE(3065)] = 147496, - [SMALL_STATE(3066)] = 147527, - [SMALL_STATE(3067)] = 147558, - [SMALL_STATE(3068)] = 147589, - [SMALL_STATE(3069)] = 147620, - [SMALL_STATE(3070)] = 147651, - [SMALL_STATE(3071)] = 147682, - [SMALL_STATE(3072)] = 147713, - [SMALL_STATE(3073)] = 147744, - [SMALL_STATE(3074)] = 147775, - [SMALL_STATE(3075)] = 147806, - [SMALL_STATE(3076)] = 147837, - [SMALL_STATE(3077)] = 147868, - [SMALL_STATE(3078)] = 147903, - [SMALL_STATE(3079)] = 147934, - [SMALL_STATE(3080)] = 147965, - [SMALL_STATE(3081)] = 147996, - [SMALL_STATE(3082)] = 148027, - [SMALL_STATE(3083)] = 148058, - [SMALL_STATE(3084)] = 148095, - [SMALL_STATE(3085)] = 148126, - [SMALL_STATE(3086)] = 148157, - [SMALL_STATE(3087)] = 148188, - [SMALL_STATE(3088)] = 148219, - [SMALL_STATE(3089)] = 148250, - [SMALL_STATE(3090)] = 148281, - [SMALL_STATE(3091)] = 148316, - [SMALL_STATE(3092)] = 148353, - [SMALL_STATE(3093)] = 148384, - [SMALL_STATE(3094)] = 148419, - [SMALL_STATE(3095)] = 148455, - [SMALL_STATE(3096)] = 148485, - [SMALL_STATE(3097)] = 148521, - [SMALL_STATE(3098)] = 148555, - [SMALL_STATE(3099)] = 148589, - [SMALL_STATE(3100)] = 148625, - [SMALL_STATE(3101)] = 148655, - [SMALL_STATE(3102)] = 148691, - [SMALL_STATE(3103)] = 148725, - [SMALL_STATE(3104)] = 148761, - [SMALL_STATE(3105)] = 148791, - [SMALL_STATE(3106)] = 148821, - [SMALL_STATE(3107)] = 148871, - [SMALL_STATE(3108)] = 148901, - [SMALL_STATE(3109)] = 148951, - [SMALL_STATE(3110)] = 148981, - [SMALL_STATE(3111)] = 149017, - [SMALL_STATE(3112)] = 149053, - [SMALL_STATE(3113)] = 149083, - [SMALL_STATE(3114)] = 149113, - [SMALL_STATE(3115)] = 149147, - [SMALL_STATE(3116)] = 149177, - [SMALL_STATE(3117)] = 149213, - [SMALL_STATE(3118)] = 149243, - [SMALL_STATE(3119)] = 149273, - [SMALL_STATE(3120)] = 149309, - [SMALL_STATE(3121)] = 149345, - [SMALL_STATE(3122)] = 149375, - [SMALL_STATE(3123)] = 149405, - [SMALL_STATE(3124)] = 149441, - [SMALL_STATE(3125)] = 149477, - [SMALL_STATE(3126)] = 149507, - [SMALL_STATE(3127)] = 149557, - [SMALL_STATE(3128)] = 149607, - [SMALL_STATE(3129)] = 149657, - [SMALL_STATE(3130)] = 149693, - [SMALL_STATE(3131)] = 149723, - [SMALL_STATE(3132)] = 149773, - [SMALL_STATE(3133)] = 149803, - [SMALL_STATE(3134)] = 149833, - [SMALL_STATE(3135)] = 149869, - [SMALL_STATE(3136)] = 149905, - [SMALL_STATE(3137)] = 149941, - [SMALL_STATE(3138)] = 149971, - [SMALL_STATE(3139)] = 150007, - [SMALL_STATE(3140)] = 150043, - [SMALL_STATE(3141)] = 150073, - [SMALL_STATE(3142)] = 150103, - [SMALL_STATE(3143)] = 150133, - [SMALL_STATE(3144)] = 150169, - [SMALL_STATE(3145)] = 150220, - [SMALL_STATE(3146)] = 150271, - [SMALL_STATE(3147)] = 150322, - [SMALL_STATE(3148)] = 150373, - [SMALL_STATE(3149)] = 150416, - [SMALL_STATE(3150)] = 150447, - [SMALL_STATE(3151)] = 150476, - [SMALL_STATE(3152)] = 150511, - [SMALL_STATE(3153)] = 150562, - [SMALL_STATE(3154)] = 150591, - [SMALL_STATE(3155)] = 150642, - [SMALL_STATE(3156)] = 150673, - [SMALL_STATE(3157)] = 150724, - [SMALL_STATE(3158)] = 150759, - [SMALL_STATE(3159)] = 150790, - [SMALL_STATE(3160)] = 150841, - [SMALL_STATE(3161)] = 150872, - [SMALL_STATE(3162)] = 150901, - [SMALL_STATE(3163)] = 150936, - [SMALL_STATE(3164)] = 150987, - [SMALL_STATE(3165)] = 151038, - [SMALL_STATE(3166)] = 151089, - [SMALL_STATE(3167)] = 151140, - [SMALL_STATE(3168)] = 151169, - [SMALL_STATE(3169)] = 151200, - [SMALL_STATE(3170)] = 151235, - [SMALL_STATE(3171)] = 151264, - [SMALL_STATE(3172)] = 151293, - [SMALL_STATE(3173)] = 151344, - [SMALL_STATE(3174)] = 151395, - [SMALL_STATE(3175)] = 151424, - [SMALL_STATE(3176)] = 151455, - [SMALL_STATE(3177)] = 151506, - [SMALL_STATE(3178)] = 151537, - [SMALL_STATE(3179)] = 151566, - [SMALL_STATE(3180)] = 151601, - [SMALL_STATE(3181)] = 151630, - [SMALL_STATE(3182)] = 151681, - [SMALL_STATE(3183)] = 151732, - [SMALL_STATE(3184)] = 151761, - [SMALL_STATE(3185)] = 151812, - [SMALL_STATE(3186)] = 151863, - [SMALL_STATE(3187)] = 151898, - [SMALL_STATE(3188)] = 151949, - [SMALL_STATE(3189)] = 151980, - [SMALL_STATE(3190)] = 152011, - [SMALL_STATE(3191)] = 152042, - [SMALL_STATE(3192)] = 152093, - [SMALL_STATE(3193)] = 152144, - [SMALL_STATE(3194)] = 152195, - [SMALL_STATE(3195)] = 152246, - [SMALL_STATE(3196)] = 152277, - [SMALL_STATE(3197)] = 152328, - [SMALL_STATE(3198)] = 152379, - [SMALL_STATE(3199)] = 152430, - [SMALL_STATE(3200)] = 152461, - [SMALL_STATE(3201)] = 152512, - [SMALL_STATE(3202)] = 152563, - [SMALL_STATE(3203)] = 152594, - [SMALL_STATE(3204)] = 152641, - [SMALL_STATE(3205)] = 152672, - [SMALL_STATE(3206)] = 152723, - [SMALL_STATE(3207)] = 152752, - [SMALL_STATE(3208)] = 152803, - [SMALL_STATE(3209)] = 152854, - [SMALL_STATE(3210)] = 152883, - [SMALL_STATE(3211)] = 152930, - [SMALL_STATE(3212)] = 152961, - [SMALL_STATE(3213)] = 152990, - [SMALL_STATE(3214)] = 153041, - [SMALL_STATE(3215)] = 153074, - [SMALL_STATE(3216)] = 153117, - [SMALL_STATE(3217)] = 153168, - [SMALL_STATE(3218)] = 153201, - [SMALL_STATE(3219)] = 153232, - [SMALL_STATE(3220)] = 153283, - [SMALL_STATE(3221)] = 153334, - [SMALL_STATE(3222)] = 153373, - [SMALL_STATE(3223)] = 153402, - [SMALL_STATE(3224)] = 153453, - [SMALL_STATE(3225)] = 153494, - [SMALL_STATE(3226)] = 153525, - [SMALL_STATE(3227)] = 153564, - [SMALL_STATE(3228)] = 153593, - [SMALL_STATE(3229)] = 153644, - [SMALL_STATE(3230)] = 153673, - [SMALL_STATE(3231)] = 153702, - [SMALL_STATE(3232)] = 153731, - [SMALL_STATE(3233)] = 153782, - [SMALL_STATE(3234)] = 153817, - [SMALL_STATE(3235)] = 153852, - [SMALL_STATE(3236)] = 153881, - [SMALL_STATE(3237)] = 153916, - [SMALL_STATE(3238)] = 153967, - [SMALL_STATE(3239)] = 153998, - [SMALL_STATE(3240)] = 154031, - [SMALL_STATE(3241)] = 154082, - [SMALL_STATE(3242)] = 154113, - [SMALL_STATE(3243)] = 154164, - [SMALL_STATE(3244)] = 154215, - [SMALL_STATE(3245)] = 154266, - [SMALL_STATE(3246)] = 154295, - [SMALL_STATE(3247)] = 154346, - [SMALL_STATE(3248)] = 154397, - [SMALL_STATE(3249)] = 154448, - [SMALL_STATE(3250)] = 154499, - [SMALL_STATE(3251)] = 154530, - [SMALL_STATE(3252)] = 154561, - [SMALL_STATE(3253)] = 154612, - [SMALL_STATE(3254)] = 154643, - [SMALL_STATE(3255)] = 154674, - [SMALL_STATE(3256)] = 154725, - [SMALL_STATE(3257)] = 154756, - [SMALL_STATE(3258)] = 154807, - [SMALL_STATE(3259)] = 154858, - [SMALL_STATE(3260)] = 154909, - [SMALL_STATE(3261)] = 154942, - [SMALL_STATE(3262)] = 154993, - [SMALL_STATE(3263)] = 155028, - [SMALL_STATE(3264)] = 155079, - [SMALL_STATE(3265)] = 155130, - [SMALL_STATE(3266)] = 155177, - [SMALL_STATE(3267)] = 155228, - [SMALL_STATE(3268)] = 155259, - [SMALL_STATE(3269)] = 155310, - [SMALL_STATE(3270)] = 155343, - [SMALL_STATE(3271)] = 155394, - [SMALL_STATE(3272)] = 155445, - [SMALL_STATE(3273)] = 155496, - [SMALL_STATE(3274)] = 155547, - [SMALL_STATE(3275)] = 155598, - [SMALL_STATE(3276)] = 155646, - [SMALL_STATE(3277)] = 155674, - [SMALL_STATE(3278)] = 155722, - [SMALL_STATE(3279)] = 155770, - [SMALL_STATE(3280)] = 155818, - [SMALL_STATE(3281)] = 155866, - [SMALL_STATE(3282)] = 155914, - [SMALL_STATE(3283)] = 155942, - [SMALL_STATE(3284)] = 155990, - [SMALL_STATE(3285)] = 156038, - [SMALL_STATE(3286)] = 156066, - [SMALL_STATE(3287)] = 156098, - [SMALL_STATE(3288)] = 156126, - [SMALL_STATE(3289)] = 156174, - [SMALL_STATE(3290)] = 156208, - [SMALL_STATE(3291)] = 156236, - [SMALL_STATE(3292)] = 156284, - [SMALL_STATE(3293)] = 156312, - [SMALL_STATE(3294)] = 156360, - [SMALL_STATE(3295)] = 156394, - [SMALL_STATE(3296)] = 156442, - [SMALL_STATE(3297)] = 156490, - [SMALL_STATE(3298)] = 156538, - [SMALL_STATE(3299)] = 156586, - [SMALL_STATE(3300)] = 156614, - [SMALL_STATE(3301)] = 156642, - [SMALL_STATE(3302)] = 156690, - [SMALL_STATE(3303)] = 156734, - [SMALL_STATE(3304)] = 156762, - [SMALL_STATE(3305)] = 156790, - [SMALL_STATE(3306)] = 156838, - [SMALL_STATE(3307)] = 156866, - [SMALL_STATE(3308)] = 156914, - [SMALL_STATE(3309)] = 156962, - [SMALL_STATE(3310)] = 157010, - [SMALL_STATE(3311)] = 157038, - [SMALL_STATE(3312)] = 157086, - [SMALL_STATE(3313)] = 157134, - [SMALL_STATE(3314)] = 157162, - [SMALL_STATE(3315)] = 157190, - [SMALL_STATE(3316)] = 157238, - [SMALL_STATE(3317)] = 157266, - [SMALL_STATE(3318)] = 157314, - [SMALL_STATE(3319)] = 157342, - [SMALL_STATE(3320)] = 157370, - [SMALL_STATE(3321)] = 157398, - [SMALL_STATE(3322)] = 157446, - [SMALL_STATE(3323)] = 157494, - [SMALL_STATE(3324)] = 157542, - [SMALL_STATE(3325)] = 157590, - [SMALL_STATE(3326)] = 157638, - [SMALL_STATE(3327)] = 157686, - [SMALL_STATE(3328)] = 157734, - [SMALL_STATE(3329)] = 157762, - [SMALL_STATE(3330)] = 157810, - [SMALL_STATE(3331)] = 157844, - [SMALL_STATE(3332)] = 157892, - [SMALL_STATE(3333)] = 157926, - [SMALL_STATE(3334)] = 157974, - [SMALL_STATE(3335)] = 158008, - [SMALL_STATE(3336)] = 158056, - [SMALL_STATE(3337)] = 158084, - [SMALL_STATE(3338)] = 158112, - [SMALL_STATE(3339)] = 158160, - [SMALL_STATE(3340)] = 158208, - [SMALL_STATE(3341)] = 158256, - [SMALL_STATE(3342)] = 158304, - [SMALL_STATE(3343)] = 158352, - [SMALL_STATE(3344)] = 158400, - [SMALL_STATE(3345)] = 158428, - [SMALL_STATE(3346)] = 158470, - [SMALL_STATE(3347)] = 158498, - [SMALL_STATE(3348)] = 158546, - [SMALL_STATE(3349)] = 158594, - [SMALL_STATE(3350)] = 158642, - [SMALL_STATE(3351)] = 158690, - [SMALL_STATE(3352)] = 158738, - [SMALL_STATE(3353)] = 158786, - [SMALL_STATE(3354)] = 158834, - [SMALL_STATE(3355)] = 158882, - [SMALL_STATE(3356)] = 158914, - [SMALL_STATE(3357)] = 158962, - [SMALL_STATE(3358)] = 159010, - [SMALL_STATE(3359)] = 159058, - [SMALL_STATE(3360)] = 159106, - [SMALL_STATE(3361)] = 159136, - [SMALL_STATE(3362)] = 159184, - [SMALL_STATE(3363)] = 159212, - [SMALL_STATE(3364)] = 159240, - [SMALL_STATE(3365)] = 159272, - [SMALL_STATE(3366)] = 159300, - [SMALL_STATE(3367)] = 159348, - [SMALL_STATE(3368)] = 159396, - [SMALL_STATE(3369)] = 159430, - [SMALL_STATE(3370)] = 159478, - [SMALL_STATE(3371)] = 159522, - [SMALL_STATE(3372)] = 159556, - [SMALL_STATE(3373)] = 159604, - [SMALL_STATE(3374)] = 159632, - [SMALL_STATE(3375)] = 159660, - [SMALL_STATE(3376)] = 159708, - [SMALL_STATE(3377)] = 159756, - [SMALL_STATE(3378)] = 159804, - [SMALL_STATE(3379)] = 159852, - [SMALL_STATE(3380)] = 159880, - [SMALL_STATE(3381)] = 159928, - [SMALL_STATE(3382)] = 159976, - [SMALL_STATE(3383)] = 160008, - [SMALL_STATE(3384)] = 160040, - [SMALL_STATE(3385)] = 160088, - [SMALL_STATE(3386)] = 160116, - [SMALL_STATE(3387)] = 160150, - [SMALL_STATE(3388)] = 160178, - [SMALL_STATE(3389)] = 160206, - [SMALL_STATE(3390)] = 160254, - [SMALL_STATE(3391)] = 160302, - [SMALL_STATE(3392)] = 160330, - [SMALL_STATE(3393)] = 160378, - [SMALL_STATE(3394)] = 160426, - [SMALL_STATE(3395)] = 160474, - [SMALL_STATE(3396)] = 160522, - [SMALL_STATE(3397)] = 160550, - [SMALL_STATE(3398)] = 160578, - [SMALL_STATE(3399)] = 160606, - [SMALL_STATE(3400)] = 160634, - [SMALL_STATE(3401)] = 160662, - [SMALL_STATE(3402)] = 160710, - [SMALL_STATE(3403)] = 160758, - [SMALL_STATE(3404)] = 160806, - [SMALL_STATE(3405)] = 160834, - [SMALL_STATE(3406)] = 160882, - [SMALL_STATE(3407)] = 160916, - [SMALL_STATE(3408)] = 160944, - [SMALL_STATE(3409)] = 160972, - [SMALL_STATE(3410)] = 161020, - [SMALL_STATE(3411)] = 161048, - [SMALL_STATE(3412)] = 161096, - [SMALL_STATE(3413)] = 161128, - [SMALL_STATE(3414)] = 161176, - [SMALL_STATE(3415)] = 161224, - [SMALL_STATE(3416)] = 161252, - [SMALL_STATE(3417)] = 161284, - [SMALL_STATE(3418)] = 161312, - [SMALL_STATE(3419)] = 161344, - [SMALL_STATE(3420)] = 161392, - [SMALL_STATE(3421)] = 161420, - [SMALL_STATE(3422)] = 161468, - [SMALL_STATE(3423)] = 161516, - [SMALL_STATE(3424)] = 161548, - [SMALL_STATE(3425)] = 161596, - [SMALL_STATE(3426)] = 161644, - [SMALL_STATE(3427)] = 161672, - [SMALL_STATE(3428)] = 161720, - [SMALL_STATE(3429)] = 161768, - [SMALL_STATE(3430)] = 161796, - [SMALL_STATE(3431)] = 161828, - [SMALL_STATE(3432)] = 161876, - [SMALL_STATE(3433)] = 161908, - [SMALL_STATE(3434)] = 161942, - [SMALL_STATE(3435)] = 161990, - [SMALL_STATE(3436)] = 162038, - [SMALL_STATE(3437)] = 162072, - [SMALL_STATE(3438)] = 162100, - [SMALL_STATE(3439)] = 162148, - [SMALL_STATE(3440)] = 162196, - [SMALL_STATE(3441)] = 162244, - [SMALL_STATE(3442)] = 162272, - [SMALL_STATE(3443)] = 162300, - [SMALL_STATE(3444)] = 162334, - [SMALL_STATE(3445)] = 162382, - [SMALL_STATE(3446)] = 162430, - [SMALL_STATE(3447)] = 162478, - [SMALL_STATE(3448)] = 162506, - [SMALL_STATE(3449)] = 162534, - [SMALL_STATE(3450)] = 162562, - [SMALL_STATE(3451)] = 162610, - [SMALL_STATE(3452)] = 162652, - [SMALL_STATE(3453)] = 162700, - [SMALL_STATE(3454)] = 162748, - [SMALL_STATE(3455)] = 162796, - [SMALL_STATE(3456)] = 162824, - [SMALL_STATE(3457)] = 162872, - [SMALL_STATE(3458)] = 162900, - [SMALL_STATE(3459)] = 162928, - [SMALL_STATE(3460)] = 162976, - [SMALL_STATE(3461)] = 163004, - [SMALL_STATE(3462)] = 163032, - [SMALL_STATE(3463)] = 163080, - [SMALL_STATE(3464)] = 163108, - [SMALL_STATE(3465)] = 163136, - [SMALL_STATE(3466)] = 163170, - [SMALL_STATE(3467)] = 163218, - [SMALL_STATE(3468)] = 163266, - [SMALL_STATE(3469)] = 163294, - [SMALL_STATE(3470)] = 163342, - [SMALL_STATE(3471)] = 163390, - [SMALL_STATE(3472)] = 163418, - [SMALL_STATE(3473)] = 163466, - [SMALL_STATE(3474)] = 163494, - [SMALL_STATE(3475)] = 163542, - [SMALL_STATE(3476)] = 163570, - [SMALL_STATE(3477)] = 163618, - [SMALL_STATE(3478)] = 163666, - [SMALL_STATE(3479)] = 163694, - [SMALL_STATE(3480)] = 163742, - [SMALL_STATE(3481)] = 163770, - [SMALL_STATE(3482)] = 163818, - [SMALL_STATE(3483)] = 163846, - [SMALL_STATE(3484)] = 163873, - [SMALL_STATE(3485)] = 163900, - [SMALL_STATE(3486)] = 163931, - [SMALL_STATE(3487)] = 163958, - [SMALL_STATE(3488)] = 163991, - [SMALL_STATE(3489)] = 164024, - [SMALL_STATE(3490)] = 164051, - [SMALL_STATE(3491)] = 164084, - [SMALL_STATE(3492)] = 164111, - [SMALL_STATE(3493)] = 164142, - [SMALL_STATE(3494)] = 164169, - [SMALL_STATE(3495)] = 164200, - [SMALL_STATE(3496)] = 164233, - [SMALL_STATE(3497)] = 164260, - [SMALL_STATE(3498)] = 164291, - [SMALL_STATE(3499)] = 164318, - [SMALL_STATE(3500)] = 164349, - [SMALL_STATE(3501)] = 164376, - [SMALL_STATE(3502)] = 164407, - [SMALL_STATE(3503)] = 164438, - [SMALL_STATE(3504)] = 164465, - [SMALL_STATE(3505)] = 164492, - [SMALL_STATE(3506)] = 164519, - [SMALL_STATE(3507)] = 164546, - [SMALL_STATE(3508)] = 164581, - [SMALL_STATE(3509)] = 164608, - [SMALL_STATE(3510)] = 164635, - [SMALL_STATE(3511)] = 164666, - [SMALL_STATE(3512)] = 164697, - [SMALL_STATE(3513)] = 164724, - [SMALL_STATE(3514)] = 164751, - [SMALL_STATE(3515)] = 164778, - [SMALL_STATE(3516)] = 164805, - [SMALL_STATE(3517)] = 164836, - [SMALL_STATE(3518)] = 164863, - [SMALL_STATE(3519)] = 164890, - [SMALL_STATE(3520)] = 164917, - [SMALL_STATE(3521)] = 164944, - [SMALL_STATE(3522)] = 164971, - [SMALL_STATE(3523)] = 164998, - [SMALL_STATE(3524)] = 165025, - [SMALL_STATE(3525)] = 165052, - [SMALL_STATE(3526)] = 165079, - [SMALL_STATE(3527)] = 165106, - [SMALL_STATE(3528)] = 165133, - [SMALL_STATE(3529)] = 165160, - [SMALL_STATE(3530)] = 165187, - [SMALL_STATE(3531)] = 165214, - [SMALL_STATE(3532)] = 165241, - [SMALL_STATE(3533)] = 165268, - [SMALL_STATE(3534)] = 165303, - [SMALL_STATE(3535)] = 165330, - [SMALL_STATE(3536)] = 165357, - [SMALL_STATE(3537)] = 165384, - [SMALL_STATE(3538)] = 165411, - [SMALL_STATE(3539)] = 165438, - [SMALL_STATE(3540)] = 165465, - [SMALL_STATE(3541)] = 165491, - [SMALL_STATE(3542)] = 165517, - [SMALL_STATE(3543)] = 165543, - [SMALL_STATE(3544)] = 165569, - [SMALL_STATE(3545)] = 165595, - [SMALL_STATE(3546)] = 165621, - [SMALL_STATE(3547)] = 165651, - [SMALL_STATE(3548)] = 165683, - [SMALL_STATE(3549)] = 165709, - [SMALL_STATE(3550)] = 165735, - [SMALL_STATE(3551)] = 165761, - [SMALL_STATE(3552)] = 165791, - [SMALL_STATE(3553)] = 165817, - [SMALL_STATE(3554)] = 165843, - [SMALL_STATE(3555)] = 165875, - [SMALL_STATE(3556)] = 165901, - [SMALL_STATE(3557)] = 165927, - [SMALL_STATE(3558)] = 165953, - [SMALL_STATE(3559)] = 165987, - [SMALL_STATE(3560)] = 166013, - [SMALL_STATE(3561)] = 166043, - [SMALL_STATE(3562)] = 166075, - [SMALL_STATE(3563)] = 166101, - [SMALL_STATE(3564)] = 166127, - [SMALL_STATE(3565)] = 166153, - [SMALL_STATE(3566)] = 166179, - [SMALL_STATE(3567)] = 166211, - [SMALL_STATE(3568)] = 166243, - [SMALL_STATE(3569)] = 166277, - [SMALL_STATE(3570)] = 166303, - [SMALL_STATE(3571)] = 166329, - [SMALL_STATE(3572)] = 166355, - [SMALL_STATE(3573)] = 166380, - [SMALL_STATE(3574)] = 166409, - [SMALL_STATE(3575)] = 166434, - [SMALL_STATE(3576)] = 166459, - [SMALL_STATE(3577)] = 166492, - [SMALL_STATE(3578)] = 166517, - [SMALL_STATE(3579)] = 166542, - [SMALL_STATE(3580)] = 166567, - [SMALL_STATE(3581)] = 166592, - [SMALL_STATE(3582)] = 166617, - [SMALL_STATE(3583)] = 166650, - [SMALL_STATE(3584)] = 166675, - [SMALL_STATE(3585)] = 166700, - [SMALL_STATE(3586)] = 166725, - [SMALL_STATE(3587)] = 166758, - [SMALL_STATE(3588)] = 166783, - [SMALL_STATE(3589)] = 166807, - [SMALL_STATE(3590)] = 166831, - [SMALL_STATE(3591)] = 166855, - [SMALL_STATE(3592)] = 166879, - [SMALL_STATE(3593)] = 166903, - [SMALL_STATE(3594)] = 166927, - [SMALL_STATE(3595)] = 166951, - [SMALL_STATE(3596)] = 166975, - [SMALL_STATE(3597)] = 166999, - [SMALL_STATE(3598)] = 167023, - [SMALL_STATE(3599)] = 167047, - [SMALL_STATE(3600)] = 167071, - [SMALL_STATE(3601)] = 167095, - [SMALL_STATE(3602)] = 167119, - [SMALL_STATE(3603)] = 167143, - [SMALL_STATE(3604)] = 167167, - [SMALL_STATE(3605)] = 167191, - [SMALL_STATE(3606)] = 167215, - [SMALL_STATE(3607)] = 167239, - [SMALL_STATE(3608)] = 167263, - [SMALL_STATE(3609)] = 167287, - [SMALL_STATE(3610)] = 167311, - [SMALL_STATE(3611)] = 167335, - [SMALL_STATE(3612)] = 167359, - [SMALL_STATE(3613)] = 167383, - [SMALL_STATE(3614)] = 167407, - [SMALL_STATE(3615)] = 167431, - [SMALL_STATE(3616)] = 167455, - [SMALL_STATE(3617)] = 167479, - [SMALL_STATE(3618)] = 167503, - [SMALL_STATE(3619)] = 167527, - [SMALL_STATE(3620)] = 167551, - [SMALL_STATE(3621)] = 167575, - [SMALL_STATE(3622)] = 167599, - [SMALL_STATE(3623)] = 167623, - [SMALL_STATE(3624)] = 167647, - [SMALL_STATE(3625)] = 167671, - [SMALL_STATE(3626)] = 167695, - [SMALL_STATE(3627)] = 167719, - [SMALL_STATE(3628)] = 167743, - [SMALL_STATE(3629)] = 167767, - [SMALL_STATE(3630)] = 167791, - [SMALL_STATE(3631)] = 167815, - [SMALL_STATE(3632)] = 167844, - [SMALL_STATE(3633)] = 167873, - [SMALL_STATE(3634)] = 167902, - [SMALL_STATE(3635)] = 167931, - [SMALL_STATE(3636)] = 167969, - [SMALL_STATE(3637)] = 168007, - [SMALL_STATE(3638)] = 168045, - [SMALL_STATE(3639)] = 168083, - [SMALL_STATE(3640)] = 168121, - [SMALL_STATE(3641)] = 168159, - [SMALL_STATE(3642)] = 168197, - [SMALL_STATE(3643)] = 168235, - [SMALL_STATE(3644)] = 168273, - [SMALL_STATE(3645)] = 168311, - [SMALL_STATE(3646)] = 168349, - [SMALL_STATE(3647)] = 168387, - [SMALL_STATE(3648)] = 168425, - [SMALL_STATE(3649)] = 168463, - [SMALL_STATE(3650)] = 168501, - [SMALL_STATE(3651)] = 168539, - [SMALL_STATE(3652)] = 168577, - [SMALL_STATE(3653)] = 168615, - [SMALL_STATE(3654)] = 168653, - [SMALL_STATE(3655)] = 168691, - [SMALL_STATE(3656)] = 168729, - [SMALL_STATE(3657)] = 168767, - [SMALL_STATE(3658)] = 168805, - [SMALL_STATE(3659)] = 168843, - [SMALL_STATE(3660)] = 168881, - [SMALL_STATE(3661)] = 168919, - [SMALL_STATE(3662)] = 168957, - [SMALL_STATE(3663)] = 168995, - [SMALL_STATE(3664)] = 169033, - [SMALL_STATE(3665)] = 169071, - [SMALL_STATE(3666)] = 169109, - [SMALL_STATE(3667)] = 169147, - [SMALL_STATE(3668)] = 169185, - [SMALL_STATE(3669)] = 169223, - [SMALL_STATE(3670)] = 169261, - [SMALL_STATE(3671)] = 169299, - [SMALL_STATE(3672)] = 169337, - [SMALL_STATE(3673)] = 169375, - [SMALL_STATE(3674)] = 169413, - [SMALL_STATE(3675)] = 169451, - [SMALL_STATE(3676)] = 169489, - [SMALL_STATE(3677)] = 169527, - [SMALL_STATE(3678)] = 169565, - [SMALL_STATE(3679)] = 169603, - [SMALL_STATE(3680)] = 169641, - [SMALL_STATE(3681)] = 169679, - [SMALL_STATE(3682)] = 169717, - [SMALL_STATE(3683)] = 169755, - [SMALL_STATE(3684)] = 169793, - [SMALL_STATE(3685)] = 169831, - [SMALL_STATE(3686)] = 169869, - [SMALL_STATE(3687)] = 169907, - [SMALL_STATE(3688)] = 169945, - [SMALL_STATE(3689)] = 169983, - [SMALL_STATE(3690)] = 170021, - [SMALL_STATE(3691)] = 170049, - [SMALL_STATE(3692)] = 170077, - [SMALL_STATE(3693)] = 170115, - [SMALL_STATE(3694)] = 170153, - [SMALL_STATE(3695)] = 170191, - [SMALL_STATE(3696)] = 170229, - [SMALL_STATE(3697)] = 170267, - [SMALL_STATE(3698)] = 170295, - [SMALL_STATE(3699)] = 170333, - [SMALL_STATE(3700)] = 170371, - [SMALL_STATE(3701)] = 170409, - [SMALL_STATE(3702)] = 170447, - [SMALL_STATE(3703)] = 170485, - [SMALL_STATE(3704)] = 170523, - [SMALL_STATE(3705)] = 170561, - [SMALL_STATE(3706)] = 170599, - [SMALL_STATE(3707)] = 170637, - [SMALL_STATE(3708)] = 170675, - [SMALL_STATE(3709)] = 170713, - [SMALL_STATE(3710)] = 170741, - [SMALL_STATE(3711)] = 170779, - [SMALL_STATE(3712)] = 170817, - [SMALL_STATE(3713)] = 170855, - [SMALL_STATE(3714)] = 170893, - [SMALL_STATE(3715)] = 170931, - [SMALL_STATE(3716)] = 170969, - [SMALL_STATE(3717)] = 170997, - [SMALL_STATE(3718)] = 171035, - [SMALL_STATE(3719)] = 171073, - [SMALL_STATE(3720)] = 171111, - [SMALL_STATE(3721)] = 171139, - [SMALL_STATE(3722)] = 171177, - [SMALL_STATE(3723)] = 171215, - [SMALL_STATE(3724)] = 171253, - [SMALL_STATE(3725)] = 171291, - [SMALL_STATE(3726)] = 171329, - [SMALL_STATE(3727)] = 171367, - [SMALL_STATE(3728)] = 171405, - [SMALL_STATE(3729)] = 171443, - [SMALL_STATE(3730)] = 171481, - [SMALL_STATE(3731)] = 171519, - [SMALL_STATE(3732)] = 171557, - [SMALL_STATE(3733)] = 171595, - [SMALL_STATE(3734)] = 171633, - [SMALL_STATE(3735)] = 171671, - [SMALL_STATE(3736)] = 171709, - [SMALL_STATE(3737)] = 171747, - [SMALL_STATE(3738)] = 171785, - [SMALL_STATE(3739)] = 171823, - [SMALL_STATE(3740)] = 171861, - [SMALL_STATE(3741)] = 171899, - [SMALL_STATE(3742)] = 171937, - [SMALL_STATE(3743)] = 171965, - [SMALL_STATE(3744)] = 172003, - [SMALL_STATE(3745)] = 172041, - [SMALL_STATE(3746)] = 172079, - [SMALL_STATE(3747)] = 172117, - [SMALL_STATE(3748)] = 172145, - [SMALL_STATE(3749)] = 172170, - [SMALL_STATE(3750)] = 172195, - [SMALL_STATE(3751)] = 172220, - [SMALL_STATE(3752)] = 172245, - [SMALL_STATE(3753)] = 172270, - [SMALL_STATE(3754)] = 172295, - [SMALL_STATE(3755)] = 172320, - [SMALL_STATE(3756)] = 172345, - [SMALL_STATE(3757)] = 172370, - [SMALL_STATE(3758)] = 172395, - [SMALL_STATE(3759)] = 172420, - [SMALL_STATE(3760)] = 172445, - [SMALL_STATE(3761)] = 172470, - [SMALL_STATE(3762)] = 172495, - [SMALL_STATE(3763)] = 172520, - [SMALL_STATE(3764)] = 172545, - [SMALL_STATE(3765)] = 172570, - [SMALL_STATE(3766)] = 172595, - [SMALL_STATE(3767)] = 172620, - [SMALL_STATE(3768)] = 172645, - [SMALL_STATE(3769)] = 172670, - [SMALL_STATE(3770)] = 172695, - [SMALL_STATE(3771)] = 172720, - [SMALL_STATE(3772)] = 172745, - [SMALL_STATE(3773)] = 172770, - [SMALL_STATE(3774)] = 172795, - [SMALL_STATE(3775)] = 172820, - [SMALL_STATE(3776)] = 172845, - [SMALL_STATE(3777)] = 172870, - [SMALL_STATE(3778)] = 172895, - [SMALL_STATE(3779)] = 172920, - [SMALL_STATE(3780)] = 172945, - [SMALL_STATE(3781)] = 172970, - [SMALL_STATE(3782)] = 172995, - [SMALL_STATE(3783)] = 173020, - [SMALL_STATE(3784)] = 173045, - [SMALL_STATE(3785)] = 173070, - [SMALL_STATE(3786)] = 173095, - [SMALL_STATE(3787)] = 173120, - [SMALL_STATE(3788)] = 173145, - [SMALL_STATE(3789)] = 173170, - [SMALL_STATE(3790)] = 173195, - [SMALL_STATE(3791)] = 173220, - [SMALL_STATE(3792)] = 173245, - [SMALL_STATE(3793)] = 173270, - [SMALL_STATE(3794)] = 173295, - [SMALL_STATE(3795)] = 173320, - [SMALL_STATE(3796)] = 173345, - [SMALL_STATE(3797)] = 173370, - [SMALL_STATE(3798)] = 173395, - [SMALL_STATE(3799)] = 173420, - [SMALL_STATE(3800)] = 173445, - [SMALL_STATE(3801)] = 173470, - [SMALL_STATE(3802)] = 173495, - [SMALL_STATE(3803)] = 173520, - [SMALL_STATE(3804)] = 173545, - [SMALL_STATE(3805)] = 173570, - [SMALL_STATE(3806)] = 173595, - [SMALL_STATE(3807)] = 173620, - [SMALL_STATE(3808)] = 173645, - [SMALL_STATE(3809)] = 173670, - [SMALL_STATE(3810)] = 173695, - [SMALL_STATE(3811)] = 173720, - [SMALL_STATE(3812)] = 173745, - [SMALL_STATE(3813)] = 173770, - [SMALL_STATE(3814)] = 173795, - [SMALL_STATE(3815)] = 173820, - [SMALL_STATE(3816)] = 173845, - [SMALL_STATE(3817)] = 173870, - [SMALL_STATE(3818)] = 173895, - [SMALL_STATE(3819)] = 173920, - [SMALL_STATE(3820)] = 173945, - [SMALL_STATE(3821)] = 173970, - [SMALL_STATE(3822)] = 173995, - [SMALL_STATE(3823)] = 174020, - [SMALL_STATE(3824)] = 174045, - [SMALL_STATE(3825)] = 174070, - [SMALL_STATE(3826)] = 174095, - [SMALL_STATE(3827)] = 174120, - [SMALL_STATE(3828)] = 174145, - [SMALL_STATE(3829)] = 174170, - [SMALL_STATE(3830)] = 174195, - [SMALL_STATE(3831)] = 174220, - [SMALL_STATE(3832)] = 174245, - [SMALL_STATE(3833)] = 174270, - [SMALL_STATE(3834)] = 174295, - [SMALL_STATE(3835)] = 174320, - [SMALL_STATE(3836)] = 174345, - [SMALL_STATE(3837)] = 174370, - [SMALL_STATE(3838)] = 174395, - [SMALL_STATE(3839)] = 174420, - [SMALL_STATE(3840)] = 174445, - [SMALL_STATE(3841)] = 174470, - [SMALL_STATE(3842)] = 174495, - [SMALL_STATE(3843)] = 174520, - [SMALL_STATE(3844)] = 174545, - [SMALL_STATE(3845)] = 174570, - [SMALL_STATE(3846)] = 174595, - [SMALL_STATE(3847)] = 174620, - [SMALL_STATE(3848)] = 174645, - [SMALL_STATE(3849)] = 174670, - [SMALL_STATE(3850)] = 174695, - [SMALL_STATE(3851)] = 174720, - [SMALL_STATE(3852)] = 174745, - [SMALL_STATE(3853)] = 174770, - [SMALL_STATE(3854)] = 174795, - [SMALL_STATE(3855)] = 174820, - [SMALL_STATE(3856)] = 174845, - [SMALL_STATE(3857)] = 174870, - [SMALL_STATE(3858)] = 174895, - [SMALL_STATE(3859)] = 174920, - [SMALL_STATE(3860)] = 174945, - [SMALL_STATE(3861)] = 174970, - [SMALL_STATE(3862)] = 174995, - [SMALL_STATE(3863)] = 175020, - [SMALL_STATE(3864)] = 175045, - [SMALL_STATE(3865)] = 175070, - [SMALL_STATE(3866)] = 175095, - [SMALL_STATE(3867)] = 175120, - [SMALL_STATE(3868)] = 175145, - [SMALL_STATE(3869)] = 175170, - [SMALL_STATE(3870)] = 175195, - [SMALL_STATE(3871)] = 175220, - [SMALL_STATE(3872)] = 175245, - [SMALL_STATE(3873)] = 175270, - [SMALL_STATE(3874)] = 175295, - [SMALL_STATE(3875)] = 175320, - [SMALL_STATE(3876)] = 175345, - [SMALL_STATE(3877)] = 175370, - [SMALL_STATE(3878)] = 175395, - [SMALL_STATE(3879)] = 175420, - [SMALL_STATE(3880)] = 175445, - [SMALL_STATE(3881)] = 175470, - [SMALL_STATE(3882)] = 175495, - [SMALL_STATE(3883)] = 175520, - [SMALL_STATE(3884)] = 175545, - [SMALL_STATE(3885)] = 175570, - [SMALL_STATE(3886)] = 175595, - [SMALL_STATE(3887)] = 175620, - [SMALL_STATE(3888)] = 175645, - [SMALL_STATE(3889)] = 175670, - [SMALL_STATE(3890)] = 175695, - [SMALL_STATE(3891)] = 175720, - [SMALL_STATE(3892)] = 175745, - [SMALL_STATE(3893)] = 175770, - [SMALL_STATE(3894)] = 175795, - [SMALL_STATE(3895)] = 175820, - [SMALL_STATE(3896)] = 175845, - [SMALL_STATE(3897)] = 175870, - [SMALL_STATE(3898)] = 175895, - [SMALL_STATE(3899)] = 175920, - [SMALL_STATE(3900)] = 175945, - [SMALL_STATE(3901)] = 175967, - [SMALL_STATE(3902)] = 175992, - [SMALL_STATE(3903)] = 176023, - [SMALL_STATE(3904)] = 176042, - [SMALL_STATE(3905)] = 176067, - [SMALL_STATE(3906)] = 176092, - [SMALL_STATE(3907)] = 176111, - [SMALL_STATE(3908)] = 176142, - [SMALL_STATE(3909)] = 176173, - [SMALL_STATE(3910)] = 176198, - [SMALL_STATE(3911)] = 176223, - [SMALL_STATE(3912)] = 176242, - [SMALL_STATE(3913)] = 176267, - [SMALL_STATE(3914)] = 176292, - [SMALL_STATE(3915)] = 176311, - [SMALL_STATE(3916)] = 176330, - [SMALL_STATE(3917)] = 176355, - [SMALL_STATE(3918)] = 176374, - [SMALL_STATE(3919)] = 176399, - [SMALL_STATE(3920)] = 176415, - [SMALL_STATE(3921)] = 176433, - [SMALL_STATE(3922)] = 176451, - [SMALL_STATE(3923)] = 176469, - [SMALL_STATE(3924)] = 176485, - [SMALL_STATE(3925)] = 176503, - [SMALL_STATE(3926)] = 176521, - [SMALL_STATE(3927)] = 176549, - [SMALL_STATE(3928)] = 176567, - [SMALL_STATE(3929)] = 176585, - [SMALL_STATE(3930)] = 176603, - [SMALL_STATE(3931)] = 176621, - [SMALL_STATE(3932)] = 176639, - [SMALL_STATE(3933)] = 176657, - [SMALL_STATE(3934)] = 176675, - [SMALL_STATE(3935)] = 176690, - [SMALL_STATE(3936)] = 176705, - [SMALL_STATE(3937)] = 176732, - [SMALL_STATE(3938)] = 176755, - [SMALL_STATE(3939)] = 176782, - [SMALL_STATE(3940)] = 176798, - [SMALL_STATE(3941)] = 176814, - [SMALL_STATE(3942)] = 176830, - [SMALL_STATE(3943)] = 176854, - [SMALL_STATE(3944)] = 176878, - [SMALL_STATE(3945)] = 176894, - [SMALL_STATE(3946)] = 176910, - [SMALL_STATE(3947)] = 176932, - [SMALL_STATE(3948)] = 176948, - [SMALL_STATE(3949)] = 176964, - [SMALL_STATE(3950)] = 176980, - [SMALL_STATE(3951)] = 176996, - [SMALL_STATE(3952)] = 177018, - [SMALL_STATE(3953)] = 177042, - [SMALL_STATE(3954)] = 177058, - [SMALL_STATE(3955)] = 177082, - [SMALL_STATE(3956)] = 177098, - [SMALL_STATE(3957)] = 177122, - [SMALL_STATE(3958)] = 177138, - [SMALL_STATE(3959)] = 177162, - [SMALL_STATE(3960)] = 177184, - [SMALL_STATE(3961)] = 177200, - [SMALL_STATE(3962)] = 177216, - [SMALL_STATE(3963)] = 177232, - [SMALL_STATE(3964)] = 177248, - [SMALL_STATE(3965)] = 177264, - [SMALL_STATE(3966)] = 177280, - [SMALL_STATE(3967)] = 177296, - [SMALL_STATE(3968)] = 177311, - [SMALL_STATE(3969)] = 177332, - [SMALL_STATE(3970)] = 177353, - [SMALL_STATE(3971)] = 177368, - [SMALL_STATE(3972)] = 177389, - [SMALL_STATE(3973)] = 177410, - [SMALL_STATE(3974)] = 177425, - [SMALL_STATE(3975)] = 177440, - [SMALL_STATE(3976)] = 177455, - [SMALL_STATE(3977)] = 177476, - [SMALL_STATE(3978)] = 177497, - [SMALL_STATE(3979)] = 177512, - [SMALL_STATE(3980)] = 177527, - [SMALL_STATE(3981)] = 177542, - [SMALL_STATE(3982)] = 177563, - [SMALL_STATE(3983)] = 177578, - [SMALL_STATE(3984)] = 177593, - [SMALL_STATE(3985)] = 177614, - [SMALL_STATE(3986)] = 177629, - [SMALL_STATE(3987)] = 177644, - [SMALL_STATE(3988)] = 177665, - [SMALL_STATE(3989)] = 177686, - [SMALL_STATE(3990)] = 177701, - [SMALL_STATE(3991)] = 177716, - [SMALL_STATE(3992)] = 177731, - [SMALL_STATE(3993)] = 177752, - [SMALL_STATE(3994)] = 177767, - [SMALL_STATE(3995)] = 177782, - [SMALL_STATE(3996)] = 177803, - [SMALL_STATE(3997)] = 177818, - [SMALL_STATE(3998)] = 177839, - [SMALL_STATE(3999)] = 177854, - [SMALL_STATE(4000)] = 177869, - [SMALL_STATE(4001)] = 177890, - [SMALL_STATE(4002)] = 177905, - [SMALL_STATE(4003)] = 177926, - [SMALL_STATE(4004)] = 177941, - [SMALL_STATE(4005)] = 177962, - [SMALL_STATE(4006)] = 177977, - [SMALL_STATE(4007)] = 177992, - [SMALL_STATE(4008)] = 178013, - [SMALL_STATE(4009)] = 178034, - [SMALL_STATE(4010)] = 178053, - [SMALL_STATE(4011)] = 178068, - [SMALL_STATE(4012)] = 178089, - [SMALL_STATE(4013)] = 178110, - [SMALL_STATE(4014)] = 178131, - [SMALL_STATE(4015)] = 178152, - [SMALL_STATE(4016)] = 178173, - [SMALL_STATE(4017)] = 178194, - [SMALL_STATE(4018)] = 178209, - [SMALL_STATE(4019)] = 178230, - [SMALL_STATE(4020)] = 178245, - [SMALL_STATE(4021)] = 178266, - [SMALL_STATE(4022)] = 178281, - [SMALL_STATE(4023)] = 178302, - [SMALL_STATE(4024)] = 178322, - [SMALL_STATE(4025)] = 178342, - [SMALL_STATE(4026)] = 178362, - [SMALL_STATE(4027)] = 178382, - [SMALL_STATE(4028)] = 178402, - [SMALL_STATE(4029)] = 178422, - [SMALL_STATE(4030)] = 178442, - [SMALL_STATE(4031)] = 178462, - [SMALL_STATE(4032)] = 178478, - [SMALL_STATE(4033)] = 178498, - [SMALL_STATE(4034)] = 178518, - [SMALL_STATE(4035)] = 178532, - [SMALL_STATE(4036)] = 178552, - [SMALL_STATE(4037)] = 178570, - [SMALL_STATE(4038)] = 178590, - [SMALL_STATE(4039)] = 178610, - [SMALL_STATE(4040)] = 178630, - [SMALL_STATE(4041)] = 178650, - [SMALL_STATE(4042)] = 178670, - [SMALL_STATE(4043)] = 178690, - [SMALL_STATE(4044)] = 178710, - [SMALL_STATE(4045)] = 178730, - [SMALL_STATE(4046)] = 178750, - [SMALL_STATE(4047)] = 178770, - [SMALL_STATE(4048)] = 178790, - [SMALL_STATE(4049)] = 178807, - [SMALL_STATE(4050)] = 178824, - [SMALL_STATE(4051)] = 178841, - [SMALL_STATE(4052)] = 178860, - [SMALL_STATE(4053)] = 178877, - [SMALL_STATE(4054)] = 178894, - [SMALL_STATE(4055)] = 178911, - [SMALL_STATE(4056)] = 178926, - [SMALL_STATE(4057)] = 178943, - [SMALL_STATE(4058)] = 178962, - [SMALL_STATE(4059)] = 178979, - [SMALL_STATE(4060)] = 178994, - [SMALL_STATE(4061)] = 179011, - [SMALL_STATE(4062)] = 179028, - [SMALL_STATE(4063)] = 179043, - [SMALL_STATE(4064)] = 179060, - [SMALL_STATE(4065)] = 179075, - [SMALL_STATE(4066)] = 179090, - [SMALL_STATE(4067)] = 179107, - [SMALL_STATE(4068)] = 179124, - [SMALL_STATE(4069)] = 179141, - [SMALL_STATE(4070)] = 179158, - [SMALL_STATE(4071)] = 179175, - [SMALL_STATE(4072)] = 179194, - [SMALL_STATE(4073)] = 179209, - [SMALL_STATE(4074)] = 179226, - [SMALL_STATE(4075)] = 179241, - [SMALL_STATE(4076)] = 179260, - [SMALL_STATE(4077)] = 179279, - [SMALL_STATE(4078)] = 179296, - [SMALL_STATE(4079)] = 179313, - [SMALL_STATE(4080)] = 179328, - [SMALL_STATE(4081)] = 179345, - [SMALL_STATE(4082)] = 179360, - [SMALL_STATE(4083)] = 179377, - [SMALL_STATE(4084)] = 179396, - [SMALL_STATE(4085)] = 179413, - [SMALL_STATE(4086)] = 179430, - [SMALL_STATE(4087)] = 179445, - [SMALL_STATE(4088)] = 179460, - [SMALL_STATE(4089)] = 179477, - [SMALL_STATE(4090)] = 179494, - [SMALL_STATE(4091)] = 179513, - [SMALL_STATE(4092)] = 179530, - [SMALL_STATE(4093)] = 179547, - [SMALL_STATE(4094)] = 179557, - [SMALL_STATE(4095)] = 179567, - [SMALL_STATE(4096)] = 179583, - [SMALL_STATE(4097)] = 179599, - [SMALL_STATE(4098)] = 179609, - [SMALL_STATE(4099)] = 179619, - [SMALL_STATE(4100)] = 179635, - [SMALL_STATE(4101)] = 179651, - [SMALL_STATE(4102)] = 179667, - [SMALL_STATE(4103)] = 179677, - [SMALL_STATE(4104)] = 179687, - [SMALL_STATE(4105)] = 179703, - [SMALL_STATE(4106)] = 179713, - [SMALL_STATE(4107)] = 179729, - [SMALL_STATE(4108)] = 179745, - [SMALL_STATE(4109)] = 179755, - [SMALL_STATE(4110)] = 179771, - [SMALL_STATE(4111)] = 179781, - [SMALL_STATE(4112)] = 179791, - [SMALL_STATE(4113)] = 179801, - [SMALL_STATE(4114)] = 179815, - [SMALL_STATE(4115)] = 179825, - [SMALL_STATE(4116)] = 179835, - [SMALL_STATE(4117)] = 179845, - [SMALL_STATE(4118)] = 179855, - [SMALL_STATE(4119)] = 179865, - [SMALL_STATE(4120)] = 179881, - [SMALL_STATE(4121)] = 179891, - [SMALL_STATE(4122)] = 179901, - [SMALL_STATE(4123)] = 179911, - [SMALL_STATE(4124)] = 179921, - [SMALL_STATE(4125)] = 179931, - [SMALL_STATE(4126)] = 179941, - [SMALL_STATE(4127)] = 179953, - [SMALL_STATE(4128)] = 179963, - [SMALL_STATE(4129)] = 179973, - [SMALL_STATE(4130)] = 179989, - [SMALL_STATE(4131)] = 180003, - [SMALL_STATE(4132)] = 180013, - [SMALL_STATE(4133)] = 180023, - [SMALL_STATE(4134)] = 180033, - [SMALL_STATE(4135)] = 180045, - [SMALL_STATE(4136)] = 180059, - [SMALL_STATE(4137)] = 180069, - [SMALL_STATE(4138)] = 180079, - [SMALL_STATE(4139)] = 180089, - [SMALL_STATE(4140)] = 180099, - [SMALL_STATE(4141)] = 180113, - [SMALL_STATE(4142)] = 180123, - [SMALL_STATE(4143)] = 180137, - [SMALL_STATE(4144)] = 180147, - [SMALL_STATE(4145)] = 180157, - [SMALL_STATE(4146)] = 180167, - [SMALL_STATE(4147)] = 180183, - [SMALL_STATE(4148)] = 180197, - [SMALL_STATE(4149)] = 180207, - [SMALL_STATE(4150)] = 180217, - [SMALL_STATE(4151)] = 180233, - [SMALL_STATE(4152)] = 180243, - [SMALL_STATE(4153)] = 180253, - [SMALL_STATE(4154)] = 180263, - [SMALL_STATE(4155)] = 180277, - [SMALL_STATE(4156)] = 180290, - [SMALL_STATE(4157)] = 180303, - [SMALL_STATE(4158)] = 180316, - [SMALL_STATE(4159)] = 180329, - [SMALL_STATE(4160)] = 180342, - [SMALL_STATE(4161)] = 180355, - [SMALL_STATE(4162)] = 180366, - [SMALL_STATE(4163)] = 180377, - [SMALL_STATE(4164)] = 180388, - [SMALL_STATE(4165)] = 180399, - [SMALL_STATE(4166)] = 180412, - [SMALL_STATE(4167)] = 180425, - [SMALL_STATE(4168)] = 180438, - [SMALL_STATE(4169)] = 180449, - [SMALL_STATE(4170)] = 180462, - [SMALL_STATE(4171)] = 180475, - [SMALL_STATE(4172)] = 180486, - [SMALL_STATE(4173)] = 180499, - [SMALL_STATE(4174)] = 180512, - [SMALL_STATE(4175)] = 180525, - [SMALL_STATE(4176)] = 180536, - [SMALL_STATE(4177)] = 180549, - [SMALL_STATE(4178)] = 180560, - [SMALL_STATE(4179)] = 180573, - [SMALL_STATE(4180)] = 180586, - [SMALL_STATE(4181)] = 180597, - [SMALL_STATE(4182)] = 180610, - [SMALL_STATE(4183)] = 180621, - [SMALL_STATE(4184)] = 180634, - [SMALL_STATE(4185)] = 180645, - [SMALL_STATE(4186)] = 180658, - [SMALL_STATE(4187)] = 180669, - [SMALL_STATE(4188)] = 180682, - [SMALL_STATE(4189)] = 180695, - [SMALL_STATE(4190)] = 180708, - [SMALL_STATE(4191)] = 180721, - [SMALL_STATE(4192)] = 180734, - [SMALL_STATE(4193)] = 180747, - [SMALL_STATE(4194)] = 180760, - [SMALL_STATE(4195)] = 180771, - [SMALL_STATE(4196)] = 180784, - [SMALL_STATE(4197)] = 180795, - [SMALL_STATE(4198)] = 180806, - [SMALL_STATE(4199)] = 180819, - [SMALL_STATE(4200)] = 180828, - [SMALL_STATE(4201)] = 180839, - [SMALL_STATE(4202)] = 180850, - [SMALL_STATE(4203)] = 180863, - [SMALL_STATE(4204)] = 180874, - [SMALL_STATE(4205)] = 180887, - [SMALL_STATE(4206)] = 180900, - [SMALL_STATE(4207)] = 180913, - [SMALL_STATE(4208)] = 180926, - [SMALL_STATE(4209)] = 180939, - [SMALL_STATE(4210)] = 180952, - [SMALL_STATE(4211)] = 180965, - [SMALL_STATE(4212)] = 180978, - [SMALL_STATE(4213)] = 180991, - [SMALL_STATE(4214)] = 181002, - [SMALL_STATE(4215)] = 181015, - [SMALL_STATE(4216)] = 181028, - [SMALL_STATE(4217)] = 181039, - [SMALL_STATE(4218)] = 181052, - [SMALL_STATE(4219)] = 181065, - [SMALL_STATE(4220)] = 181078, - [SMALL_STATE(4221)] = 181091, - [SMALL_STATE(4222)] = 181104, - [SMALL_STATE(4223)] = 181117, - [SMALL_STATE(4224)] = 181128, - [SMALL_STATE(4225)] = 181141, - [SMALL_STATE(4226)] = 181154, - [SMALL_STATE(4227)] = 181167, - [SMALL_STATE(4228)] = 181178, - [SMALL_STATE(4229)] = 181191, - [SMALL_STATE(4230)] = 181204, - [SMALL_STATE(4231)] = 181217, - [SMALL_STATE(4232)] = 181230, - [SMALL_STATE(4233)] = 181243, - [SMALL_STATE(4234)] = 181256, - [SMALL_STATE(4235)] = 181269, - [SMALL_STATE(4236)] = 181282, - [SMALL_STATE(4237)] = 181295, - [SMALL_STATE(4238)] = 181306, - [SMALL_STATE(4239)] = 181319, - [SMALL_STATE(4240)] = 181332, - [SMALL_STATE(4241)] = 181343, - [SMALL_STATE(4242)] = 181356, - [SMALL_STATE(4243)] = 181369, - [SMALL_STATE(4244)] = 181382, - [SMALL_STATE(4245)] = 181395, - [SMALL_STATE(4246)] = 181406, - [SMALL_STATE(4247)] = 181419, - [SMALL_STATE(4248)] = 181432, - [SMALL_STATE(4249)] = 181443, - [SMALL_STATE(4250)] = 181456, - [SMALL_STATE(4251)] = 181469, - [SMALL_STATE(4252)] = 181482, - [SMALL_STATE(4253)] = 181495, - [SMALL_STATE(4254)] = 181508, - [SMALL_STATE(4255)] = 181521, - [SMALL_STATE(4256)] = 181534, - [SMALL_STATE(4257)] = 181547, - [SMALL_STATE(4258)] = 181560, - [SMALL_STATE(4259)] = 181571, - [SMALL_STATE(4260)] = 181584, - [SMALL_STATE(4261)] = 181597, - [SMALL_STATE(4262)] = 181608, - [SMALL_STATE(4263)] = 181621, - [SMALL_STATE(4264)] = 181634, - [SMALL_STATE(4265)] = 181647, - [SMALL_STATE(4266)] = 181660, - [SMALL_STATE(4267)] = 181673, - [SMALL_STATE(4268)] = 181686, - [SMALL_STATE(4269)] = 181699, - [SMALL_STATE(4270)] = 181712, - [SMALL_STATE(4271)] = 181725, - [SMALL_STATE(4272)] = 181736, - [SMALL_STATE(4273)] = 181749, - [SMALL_STATE(4274)] = 181762, - [SMALL_STATE(4275)] = 181775, - [SMALL_STATE(4276)] = 181786, - [SMALL_STATE(4277)] = 181799, - [SMALL_STATE(4278)] = 181812, - [SMALL_STATE(4279)] = 181825, - [SMALL_STATE(4280)] = 181838, - [SMALL_STATE(4281)] = 181851, - [SMALL_STATE(4282)] = 181864, - [SMALL_STATE(4283)] = 181877, - [SMALL_STATE(4284)] = 181890, - [SMALL_STATE(4285)] = 181903, - [SMALL_STATE(4286)] = 181916, - [SMALL_STATE(4287)] = 181929, - [SMALL_STATE(4288)] = 181942, - [SMALL_STATE(4289)] = 181953, - [SMALL_STATE(4290)] = 181966, - [SMALL_STATE(4291)] = 181979, - [SMALL_STATE(4292)] = 181992, - [SMALL_STATE(4293)] = 182003, - [SMALL_STATE(4294)] = 182016, - [SMALL_STATE(4295)] = 182026, - [SMALL_STATE(4296)] = 182034, - [SMALL_STATE(4297)] = 182044, - [SMALL_STATE(4298)] = 182054, - [SMALL_STATE(4299)] = 182062, - [SMALL_STATE(4300)] = 182070, - [SMALL_STATE(4301)] = 182078, - [SMALL_STATE(4302)] = 182088, - [SMALL_STATE(4303)] = 182096, - [SMALL_STATE(4304)] = 182106, - [SMALL_STATE(4305)] = 182114, - [SMALL_STATE(4306)] = 182122, - [SMALL_STATE(4307)] = 182130, - [SMALL_STATE(4308)] = 182138, - [SMALL_STATE(4309)] = 182146, - [SMALL_STATE(4310)] = 182156, - [SMALL_STATE(4311)] = 182166, - [SMALL_STATE(4312)] = 182174, - [SMALL_STATE(4313)] = 182184, - [SMALL_STATE(4314)] = 182194, - [SMALL_STATE(4315)] = 182204, - [SMALL_STATE(4316)] = 182214, - [SMALL_STATE(4317)] = 182224, - [SMALL_STATE(4318)] = 182232, - [SMALL_STATE(4319)] = 182242, - [SMALL_STATE(4320)] = 182252, - [SMALL_STATE(4321)] = 182262, - [SMALL_STATE(4322)] = 182270, - [SMALL_STATE(4323)] = 182280, - [SMALL_STATE(4324)] = 182290, - [SMALL_STATE(4325)] = 182300, - [SMALL_STATE(4326)] = 182310, - [SMALL_STATE(4327)] = 182320, - [SMALL_STATE(4328)] = 182330, - [SMALL_STATE(4329)] = 182340, - [SMALL_STATE(4330)] = 182350, - [SMALL_STATE(4331)] = 182360, - [SMALL_STATE(4332)] = 182370, - [SMALL_STATE(4333)] = 182380, - [SMALL_STATE(4334)] = 182388, - [SMALL_STATE(4335)] = 182398, - [SMALL_STATE(4336)] = 182408, - [SMALL_STATE(4337)] = 182418, - [SMALL_STATE(4338)] = 182428, - [SMALL_STATE(4339)] = 182436, - [SMALL_STATE(4340)] = 182446, - [SMALL_STATE(4341)] = 182454, - [SMALL_STATE(4342)] = 182464, - [SMALL_STATE(4343)] = 182472, - [SMALL_STATE(4344)] = 182480, - [SMALL_STATE(4345)] = 182490, - [SMALL_STATE(4346)] = 182500, - [SMALL_STATE(4347)] = 182510, - [SMALL_STATE(4348)] = 182520, - [SMALL_STATE(4349)] = 182528, - [SMALL_STATE(4350)] = 182536, - [SMALL_STATE(4351)] = 182546, - [SMALL_STATE(4352)] = 182556, - [SMALL_STATE(4353)] = 182566, - [SMALL_STATE(4354)] = 182576, - [SMALL_STATE(4355)] = 182586, - [SMALL_STATE(4356)] = 182596, - [SMALL_STATE(4357)] = 182606, - [SMALL_STATE(4358)] = 182616, - [SMALL_STATE(4359)] = 182624, - [SMALL_STATE(4360)] = 182632, - [SMALL_STATE(4361)] = 182640, - [SMALL_STATE(4362)] = 182650, - [SMALL_STATE(4363)] = 182660, - [SMALL_STATE(4364)] = 182668, - [SMALL_STATE(4365)] = 182676, - [SMALL_STATE(4366)] = 182686, - [SMALL_STATE(4367)] = 182694, - [SMALL_STATE(4368)] = 182702, - [SMALL_STATE(4369)] = 182712, - [SMALL_STATE(4370)] = 182720, - [SMALL_STATE(4371)] = 182728, - [SMALL_STATE(4372)] = 182738, - [SMALL_STATE(4373)] = 182746, - [SMALL_STATE(4374)] = 182754, - [SMALL_STATE(4375)] = 182764, - [SMALL_STATE(4376)] = 182774, - [SMALL_STATE(4377)] = 182782, - [SMALL_STATE(4378)] = 182792, - [SMALL_STATE(4379)] = 182802, - [SMALL_STATE(4380)] = 182810, - [SMALL_STATE(4381)] = 182820, - [SMALL_STATE(4382)] = 182830, - [SMALL_STATE(4383)] = 182838, - [SMALL_STATE(4384)] = 182846, - [SMALL_STATE(4385)] = 182856, - [SMALL_STATE(4386)] = 182866, - [SMALL_STATE(4387)] = 182874, - [SMALL_STATE(4388)] = 182882, - [SMALL_STATE(4389)] = 182892, - [SMALL_STATE(4390)] = 182902, - [SMALL_STATE(4391)] = 182912, - [SMALL_STATE(4392)] = 182920, - [SMALL_STATE(4393)] = 182930, - [SMALL_STATE(4394)] = 182940, - [SMALL_STATE(4395)] = 182948, - [SMALL_STATE(4396)] = 182958, - [SMALL_STATE(4397)] = 182966, - [SMALL_STATE(4398)] = 182976, - [SMALL_STATE(4399)] = 182986, - [SMALL_STATE(4400)] = 182996, - [SMALL_STATE(4401)] = 183006, - [SMALL_STATE(4402)] = 183016, - [SMALL_STATE(4403)] = 183026, - [SMALL_STATE(4404)] = 183033, - [SMALL_STATE(4405)] = 183040, - [SMALL_STATE(4406)] = 183047, - [SMALL_STATE(4407)] = 183054, - [SMALL_STATE(4408)] = 183061, - [SMALL_STATE(4409)] = 183068, - [SMALL_STATE(4410)] = 183075, - [SMALL_STATE(4411)] = 183082, - [SMALL_STATE(4412)] = 183089, - [SMALL_STATE(4413)] = 183096, - [SMALL_STATE(4414)] = 183103, - [SMALL_STATE(4415)] = 183110, - [SMALL_STATE(4416)] = 183117, - [SMALL_STATE(4417)] = 183124, - [SMALL_STATE(4418)] = 183131, - [SMALL_STATE(4419)] = 183138, - [SMALL_STATE(4420)] = 183145, - [SMALL_STATE(4421)] = 183152, - [SMALL_STATE(4422)] = 183159, - [SMALL_STATE(4423)] = 183166, - [SMALL_STATE(4424)] = 183173, - [SMALL_STATE(4425)] = 183180, - [SMALL_STATE(4426)] = 183187, - [SMALL_STATE(4427)] = 183194, - [SMALL_STATE(4428)] = 183201, - [SMALL_STATE(4429)] = 183208, - [SMALL_STATE(4430)] = 183215, - [SMALL_STATE(4431)] = 183222, - [SMALL_STATE(4432)] = 183229, - [SMALL_STATE(4433)] = 183236, - [SMALL_STATE(4434)] = 183243, - [SMALL_STATE(4435)] = 183250, - [SMALL_STATE(4436)] = 183257, - [SMALL_STATE(4437)] = 183264, - [SMALL_STATE(4438)] = 183271, - [SMALL_STATE(4439)] = 183278, - [SMALL_STATE(4440)] = 183285, - [SMALL_STATE(4441)] = 183292, - [SMALL_STATE(4442)] = 183299, - [SMALL_STATE(4443)] = 183306, - [SMALL_STATE(4444)] = 183313, - [SMALL_STATE(4445)] = 183320, - [SMALL_STATE(4446)] = 183327, - [SMALL_STATE(4447)] = 183334, - [SMALL_STATE(4448)] = 183341, - [SMALL_STATE(4449)] = 183348, - [SMALL_STATE(4450)] = 183355, - [SMALL_STATE(4451)] = 183362, - [SMALL_STATE(4452)] = 183369, - [SMALL_STATE(4453)] = 183376, - [SMALL_STATE(4454)] = 183383, - [SMALL_STATE(4455)] = 183390, - [SMALL_STATE(4456)] = 183397, - [SMALL_STATE(4457)] = 183404, - [SMALL_STATE(4458)] = 183411, - [SMALL_STATE(4459)] = 183418, - [SMALL_STATE(4460)] = 183425, - [SMALL_STATE(4461)] = 183432, - [SMALL_STATE(4462)] = 183439, - [SMALL_STATE(4463)] = 183446, - [SMALL_STATE(4464)] = 183453, - [SMALL_STATE(4465)] = 183460, - [SMALL_STATE(4466)] = 183467, - [SMALL_STATE(4467)] = 183474, - [SMALL_STATE(4468)] = 183481, - [SMALL_STATE(4469)] = 183488, - [SMALL_STATE(4470)] = 183495, - [SMALL_STATE(4471)] = 183502, - [SMALL_STATE(4472)] = 183509, - [SMALL_STATE(4473)] = 183516, - [SMALL_STATE(4474)] = 183523, - [SMALL_STATE(4475)] = 183530, - [SMALL_STATE(4476)] = 183537, - [SMALL_STATE(4477)] = 183544, - [SMALL_STATE(4478)] = 183551, - [SMALL_STATE(4479)] = 183558, - [SMALL_STATE(4480)] = 183565, - [SMALL_STATE(4481)] = 183572, - [SMALL_STATE(4482)] = 183579, - [SMALL_STATE(4483)] = 183586, - [SMALL_STATE(4484)] = 183593, - [SMALL_STATE(4485)] = 183600, - [SMALL_STATE(4486)] = 183607, - [SMALL_STATE(4487)] = 183614, - [SMALL_STATE(4488)] = 183621, - [SMALL_STATE(4489)] = 183628, - [SMALL_STATE(4490)] = 183635, - [SMALL_STATE(4491)] = 183642, - [SMALL_STATE(4492)] = 183649, - [SMALL_STATE(4493)] = 183656, - [SMALL_STATE(4494)] = 183663, - [SMALL_STATE(4495)] = 183670, - [SMALL_STATE(4496)] = 183677, - [SMALL_STATE(4497)] = 183684, - [SMALL_STATE(4498)] = 183691, - [SMALL_STATE(4499)] = 183698, - [SMALL_STATE(4500)] = 183705, - [SMALL_STATE(4501)] = 183712, - [SMALL_STATE(4502)] = 183719, - [SMALL_STATE(4503)] = 183726, - [SMALL_STATE(4504)] = 183733, - [SMALL_STATE(4505)] = 183740, - [SMALL_STATE(4506)] = 183747, - [SMALL_STATE(4507)] = 183754, - [SMALL_STATE(4508)] = 183761, - [SMALL_STATE(4509)] = 183768, - [SMALL_STATE(4510)] = 183775, - [SMALL_STATE(4511)] = 183782, - [SMALL_STATE(4512)] = 183789, - [SMALL_STATE(4513)] = 183796, - [SMALL_STATE(4514)] = 183803, - [SMALL_STATE(4515)] = 183810, - [SMALL_STATE(4516)] = 183817, - [SMALL_STATE(4517)] = 183824, - [SMALL_STATE(4518)] = 183831, - [SMALL_STATE(4519)] = 183838, - [SMALL_STATE(4520)] = 183845, - [SMALL_STATE(4521)] = 183852, - [SMALL_STATE(4522)] = 183859, - [SMALL_STATE(4523)] = 183866, - [SMALL_STATE(4524)] = 183873, - [SMALL_STATE(4525)] = 183880, - [SMALL_STATE(4526)] = 183887, - [SMALL_STATE(4527)] = 183894, - [SMALL_STATE(4528)] = 183901, - [SMALL_STATE(4529)] = 183908, - [SMALL_STATE(4530)] = 183915, - [SMALL_STATE(4531)] = 183922, - [SMALL_STATE(4532)] = 183929, - [SMALL_STATE(4533)] = 183936, - [SMALL_STATE(4534)] = 183943, - [SMALL_STATE(4535)] = 183950, - [SMALL_STATE(4536)] = 183957, - [SMALL_STATE(4537)] = 183964, - [SMALL_STATE(4538)] = 183971, - [SMALL_STATE(4539)] = 183978, - [SMALL_STATE(4540)] = 183985, - [SMALL_STATE(4541)] = 183992, - [SMALL_STATE(4542)] = 183999, - [SMALL_STATE(4543)] = 184006, - [SMALL_STATE(4544)] = 184013, - [SMALL_STATE(4545)] = 184020, - [SMALL_STATE(4546)] = 184027, - [SMALL_STATE(4547)] = 184034, - [SMALL_STATE(4548)] = 184041, - [SMALL_STATE(4549)] = 184048, - [SMALL_STATE(4550)] = 184055, - [SMALL_STATE(4551)] = 184062, - [SMALL_STATE(4552)] = 184069, - [SMALL_STATE(4553)] = 184076, - [SMALL_STATE(4554)] = 184083, - [SMALL_STATE(4555)] = 184090, - [SMALL_STATE(4556)] = 184097, - [SMALL_STATE(4557)] = 184104, - [SMALL_STATE(4558)] = 184111, - [SMALL_STATE(4559)] = 184118, - [SMALL_STATE(4560)] = 184125, - [SMALL_STATE(4561)] = 184132, - [SMALL_STATE(4562)] = 184139, - [SMALL_STATE(4563)] = 184146, - [SMALL_STATE(4564)] = 184153, - [SMALL_STATE(4565)] = 184160, - [SMALL_STATE(4566)] = 184167, - [SMALL_STATE(4567)] = 184174, - [SMALL_STATE(4568)] = 184181, - [SMALL_STATE(4569)] = 184188, - [SMALL_STATE(4570)] = 184195, - [SMALL_STATE(4571)] = 184202, - [SMALL_STATE(4572)] = 184209, - [SMALL_STATE(4573)] = 184216, - [SMALL_STATE(4574)] = 184223, - [SMALL_STATE(4575)] = 184230, - [SMALL_STATE(4576)] = 184237, - [SMALL_STATE(4577)] = 184244, - [SMALL_STATE(4578)] = 184251, - [SMALL_STATE(4579)] = 184258, - [SMALL_STATE(4580)] = 184265, - [SMALL_STATE(4581)] = 184272, - [SMALL_STATE(4582)] = 184279, - [SMALL_STATE(4583)] = 184286, - [SMALL_STATE(4584)] = 184293, - [SMALL_STATE(4585)] = 184300, - [SMALL_STATE(4586)] = 184307, - [SMALL_STATE(4587)] = 184314, - [SMALL_STATE(4588)] = 184321, - [SMALL_STATE(4589)] = 184328, - [SMALL_STATE(4590)] = 184335, - [SMALL_STATE(4591)] = 184342, - [SMALL_STATE(4592)] = 184349, - [SMALL_STATE(4593)] = 184356, - [SMALL_STATE(4594)] = 184363, - [SMALL_STATE(4595)] = 184370, - [SMALL_STATE(4596)] = 184377, - [SMALL_STATE(4597)] = 184384, - [SMALL_STATE(4598)] = 184391, - [SMALL_STATE(4599)] = 184398, - [SMALL_STATE(4600)] = 184405, - [SMALL_STATE(4601)] = 184412, - [SMALL_STATE(4602)] = 184419, - [SMALL_STATE(4603)] = 184426, - [SMALL_STATE(4604)] = 184433, - [SMALL_STATE(4605)] = 184440, - [SMALL_STATE(4606)] = 184447, - [SMALL_STATE(4607)] = 184454, - [SMALL_STATE(4608)] = 184461, - [SMALL_STATE(4609)] = 184468, - [SMALL_STATE(4610)] = 184475, - [SMALL_STATE(4611)] = 184482, - [SMALL_STATE(4612)] = 184489, - [SMALL_STATE(4613)] = 184496, - [SMALL_STATE(4614)] = 184503, - [SMALL_STATE(4615)] = 184510, - [SMALL_STATE(4616)] = 184517, - [SMALL_STATE(4617)] = 184524, - [SMALL_STATE(4618)] = 184531, - [SMALL_STATE(4619)] = 184538, - [SMALL_STATE(4620)] = 184545, - [SMALL_STATE(4621)] = 184552, - [SMALL_STATE(4622)] = 184559, - [SMALL_STATE(4623)] = 184566, - [SMALL_STATE(4624)] = 184573, - [SMALL_STATE(4625)] = 184580, - [SMALL_STATE(4626)] = 184587, - [SMALL_STATE(4627)] = 184594, - [SMALL_STATE(4628)] = 184601, - [SMALL_STATE(4629)] = 184608, - [SMALL_STATE(4630)] = 184615, - [SMALL_STATE(4631)] = 184622, - [SMALL_STATE(4632)] = 184629, - [SMALL_STATE(4633)] = 184636, - [SMALL_STATE(4634)] = 184643, - [SMALL_STATE(4635)] = 184650, - [SMALL_STATE(4636)] = 184657, - [SMALL_STATE(4637)] = 184664, - [SMALL_STATE(4638)] = 184671, - [SMALL_STATE(4639)] = 184678, - [SMALL_STATE(4640)] = 184685, - [SMALL_STATE(4641)] = 184692, - [SMALL_STATE(4642)] = 184699, - [SMALL_STATE(4643)] = 184706, - [SMALL_STATE(4644)] = 184713, - [SMALL_STATE(4645)] = 184720, - [SMALL_STATE(4646)] = 184727, - [SMALL_STATE(4647)] = 184734, - [SMALL_STATE(4648)] = 184741, - [SMALL_STATE(4649)] = 184748, - [SMALL_STATE(4650)] = 184755, - [SMALL_STATE(4651)] = 184762, - [SMALL_STATE(4652)] = 184769, - [SMALL_STATE(4653)] = 184776, - [SMALL_STATE(4654)] = 184783, - [SMALL_STATE(4655)] = 184790, - [SMALL_STATE(4656)] = 184797, - [SMALL_STATE(4657)] = 184804, - [SMALL_STATE(4658)] = 184811, - [SMALL_STATE(4659)] = 184818, - [SMALL_STATE(4660)] = 184825, - [SMALL_STATE(4661)] = 184832, - [SMALL_STATE(4662)] = 184839, - [SMALL_STATE(4663)] = 184846, - [SMALL_STATE(4664)] = 184853, - [SMALL_STATE(4665)] = 184860, - [SMALL_STATE(4666)] = 184867, - [SMALL_STATE(4667)] = 184874, - [SMALL_STATE(4668)] = 184881, - [SMALL_STATE(4669)] = 184888, - [SMALL_STATE(4670)] = 184895, - [SMALL_STATE(4671)] = 184902, - [SMALL_STATE(4672)] = 184909, - [SMALL_STATE(4673)] = 184916, - [SMALL_STATE(4674)] = 184923, - [SMALL_STATE(4675)] = 184930, - [SMALL_STATE(4676)] = 184937, - [SMALL_STATE(4677)] = 184944, - [SMALL_STATE(4678)] = 184951, - [SMALL_STATE(4679)] = 184958, - [SMALL_STATE(4680)] = 184965, - [SMALL_STATE(4681)] = 184972, - [SMALL_STATE(4682)] = 184979, - [SMALL_STATE(4683)] = 184986, - [SMALL_STATE(4684)] = 184993, - [SMALL_STATE(4685)] = 185000, - [SMALL_STATE(4686)] = 185007, - [SMALL_STATE(4687)] = 185014, - [SMALL_STATE(4688)] = 185021, - [SMALL_STATE(4689)] = 185028, - [SMALL_STATE(4690)] = 185035, - [SMALL_STATE(4691)] = 185042, - [SMALL_STATE(4692)] = 185049, - [SMALL_STATE(4693)] = 185056, - [SMALL_STATE(4694)] = 185063, - [SMALL_STATE(4695)] = 185070, - [SMALL_STATE(4696)] = 185077, - [SMALL_STATE(4697)] = 185084, - [SMALL_STATE(4698)] = 185091, - [SMALL_STATE(4699)] = 185098, - [SMALL_STATE(4700)] = 185105, - [SMALL_STATE(4701)] = 185112, - [SMALL_STATE(4702)] = 185119, - [SMALL_STATE(4703)] = 185126, - [SMALL_STATE(4704)] = 185133, - [SMALL_STATE(4705)] = 185140, - [SMALL_STATE(4706)] = 185147, - [SMALL_STATE(4707)] = 185154, - [SMALL_STATE(4708)] = 185161, - [SMALL_STATE(4709)] = 185168, - [SMALL_STATE(4710)] = 185175, - [SMALL_STATE(4711)] = 185182, - [SMALL_STATE(4712)] = 185189, - [SMALL_STATE(4713)] = 185196, - [SMALL_STATE(4714)] = 185203, - [SMALL_STATE(4715)] = 185210, - [SMALL_STATE(4716)] = 185217, - [SMALL_STATE(4717)] = 185224, - [SMALL_STATE(4718)] = 185231, - [SMALL_STATE(4719)] = 185238, - [SMALL_STATE(4720)] = 185245, - [SMALL_STATE(4721)] = 185252, - [SMALL_STATE(4722)] = 185259, - [SMALL_STATE(4723)] = 185266, - [SMALL_STATE(4724)] = 185273, - [SMALL_STATE(4725)] = 185280, - [SMALL_STATE(4726)] = 185287, - [SMALL_STATE(4727)] = 185294, - [SMALL_STATE(4728)] = 185301, - [SMALL_STATE(4729)] = 185308, - [SMALL_STATE(4730)] = 185315, - [SMALL_STATE(4731)] = 185322, - [SMALL_STATE(4732)] = 185329, - [SMALL_STATE(4733)] = 185336, - [SMALL_STATE(4734)] = 185343, - [SMALL_STATE(4735)] = 185350, - [SMALL_STATE(4736)] = 185357, - [SMALL_STATE(4737)] = 185364, - [SMALL_STATE(4738)] = 185371, - [SMALL_STATE(4739)] = 185378, - [SMALL_STATE(4740)] = 185385, - [SMALL_STATE(4741)] = 185392, - [SMALL_STATE(4742)] = 185399, - [SMALL_STATE(4743)] = 185406, - [SMALL_STATE(4744)] = 185413, - [SMALL_STATE(4745)] = 185420, - [SMALL_STATE(4746)] = 185427, - [SMALL_STATE(4747)] = 185434, - [SMALL_STATE(4748)] = 185441, - [SMALL_STATE(4749)] = 185448, - [SMALL_STATE(4750)] = 185455, - [SMALL_STATE(4751)] = 185462, - [SMALL_STATE(4752)] = 185469, - [SMALL_STATE(4753)] = 185476, - [SMALL_STATE(4754)] = 185483, - [SMALL_STATE(4755)] = 185490, - [SMALL_STATE(4756)] = 185497, - [SMALL_STATE(4757)] = 185504, - [SMALL_STATE(4758)] = 185511, - [SMALL_STATE(4759)] = 185518, - [SMALL_STATE(4760)] = 185525, - [SMALL_STATE(4761)] = 185532, - [SMALL_STATE(4762)] = 185539, - [SMALL_STATE(4763)] = 185546, - [SMALL_STATE(4764)] = 185553, - [SMALL_STATE(4765)] = 185560, - [SMALL_STATE(4766)] = 185567, - [SMALL_STATE(4767)] = 185574, - [SMALL_STATE(4768)] = 185581, - [SMALL_STATE(4769)] = 185588, - [SMALL_STATE(4770)] = 185595, - [SMALL_STATE(4771)] = 185602, - [SMALL_STATE(4772)] = 185609, - [SMALL_STATE(4773)] = 185616, - [SMALL_STATE(4774)] = 185623, - [SMALL_STATE(4775)] = 185630, - [SMALL_STATE(4776)] = 185637, - [SMALL_STATE(4777)] = 185644, - [SMALL_STATE(4778)] = 185651, - [SMALL_STATE(4779)] = 185658, - [SMALL_STATE(4780)] = 185665, - [SMALL_STATE(4781)] = 185672, - [SMALL_STATE(4782)] = 185679, - [SMALL_STATE(4783)] = 185686, - [SMALL_STATE(4784)] = 185693, - [SMALL_STATE(4785)] = 185700, - [SMALL_STATE(4786)] = 185707, - [SMALL_STATE(4787)] = 185714, - [SMALL_STATE(4788)] = 185721, - [SMALL_STATE(4789)] = 185728, - [SMALL_STATE(4790)] = 185735, - [SMALL_STATE(4791)] = 185742, - [SMALL_STATE(4792)] = 185749, - [SMALL_STATE(4793)] = 185756, - [SMALL_STATE(4794)] = 185763, - [SMALL_STATE(4795)] = 185770, - [SMALL_STATE(4796)] = 185777, - [SMALL_STATE(4797)] = 185784, - [SMALL_STATE(4798)] = 185791, - [SMALL_STATE(4799)] = 185798, - [SMALL_STATE(4800)] = 185805, - [SMALL_STATE(4801)] = 185812, - [SMALL_STATE(4802)] = 185819, - [SMALL_STATE(4803)] = 185826, - [SMALL_STATE(4804)] = 185833, - [SMALL_STATE(4805)] = 185840, - [SMALL_STATE(4806)] = 185847, - [SMALL_STATE(4807)] = 185854, - [SMALL_STATE(4808)] = 185861, - [SMALL_STATE(4809)] = 185868, - [SMALL_STATE(4810)] = 185875, - [SMALL_STATE(4811)] = 185882, - [SMALL_STATE(4812)] = 185889, - [SMALL_STATE(4813)] = 185896, - [SMALL_STATE(4814)] = 185903, - [SMALL_STATE(4815)] = 185910, - [SMALL_STATE(4816)] = 185917, - [SMALL_STATE(4817)] = 185924, - [SMALL_STATE(4818)] = 185931, - [SMALL_STATE(4819)] = 185938, - [SMALL_STATE(4820)] = 185945, - [SMALL_STATE(4821)] = 185952, - [SMALL_STATE(4822)] = 185959, - [SMALL_STATE(4823)] = 185966, - [SMALL_STATE(4824)] = 185973, - [SMALL_STATE(4825)] = 185980, - [SMALL_STATE(4826)] = 185987, - [SMALL_STATE(4827)] = 185994, - [SMALL_STATE(4828)] = 186001, - [SMALL_STATE(4829)] = 186008, - [SMALL_STATE(4830)] = 186015, - [SMALL_STATE(4831)] = 186022, - [SMALL_STATE(4832)] = 186029, - [SMALL_STATE(4833)] = 186036, - [SMALL_STATE(4834)] = 186043, - [SMALL_STATE(4835)] = 186050, - [SMALL_STATE(4836)] = 186057, - [SMALL_STATE(4837)] = 186064, - [SMALL_STATE(4838)] = 186071, - [SMALL_STATE(4839)] = 186078, - [SMALL_STATE(4840)] = 186085, - [SMALL_STATE(4841)] = 186092, - [SMALL_STATE(4842)] = 186099, - [SMALL_STATE(4843)] = 186106, - [SMALL_STATE(4844)] = 186113, - [SMALL_STATE(4845)] = 186120, - [SMALL_STATE(4846)] = 186127, - [SMALL_STATE(4847)] = 186134, - [SMALL_STATE(4848)] = 186141, - [SMALL_STATE(4849)] = 186148, - [SMALL_STATE(4850)] = 186155, - [SMALL_STATE(4851)] = 186162, - [SMALL_STATE(4852)] = 186169, - [SMALL_STATE(4853)] = 186176, - [SMALL_STATE(4854)] = 186183, - [SMALL_STATE(4855)] = 186190, - [SMALL_STATE(4856)] = 186197, - [SMALL_STATE(4857)] = 186204, - [SMALL_STATE(4858)] = 186211, - [SMALL_STATE(4859)] = 186218, - [SMALL_STATE(4860)] = 186225, - [SMALL_STATE(4861)] = 186232, - [SMALL_STATE(4862)] = 186239, - [SMALL_STATE(4863)] = 186246, - [SMALL_STATE(4864)] = 186253, - [SMALL_STATE(4865)] = 186260, - [SMALL_STATE(4866)] = 186267, - [SMALL_STATE(4867)] = 186274, - [SMALL_STATE(4868)] = 186281, - [SMALL_STATE(4869)] = 186288, - [SMALL_STATE(4870)] = 186295, - [SMALL_STATE(4871)] = 186302, - [SMALL_STATE(4872)] = 186309, - [SMALL_STATE(4873)] = 186316, - [SMALL_STATE(4874)] = 186323, - [SMALL_STATE(4875)] = 186330, - [SMALL_STATE(4876)] = 186337, - [SMALL_STATE(4877)] = 186344, - [SMALL_STATE(4878)] = 186351, - [SMALL_STATE(4879)] = 186358, - [SMALL_STATE(4880)] = 186365, - [SMALL_STATE(4881)] = 186372, - [SMALL_STATE(4882)] = 186379, - [SMALL_STATE(4883)] = 186386, - [SMALL_STATE(4884)] = 186393, - [SMALL_STATE(4885)] = 186400, - [SMALL_STATE(4886)] = 186407, - [SMALL_STATE(4887)] = 186414, - [SMALL_STATE(4888)] = 186421, - [SMALL_STATE(4889)] = 186428, - [SMALL_STATE(4890)] = 186435, - [SMALL_STATE(4891)] = 186442, - [SMALL_STATE(4892)] = 186449, - [SMALL_STATE(4893)] = 186456, - [SMALL_STATE(4894)] = 186463, - [SMALL_STATE(4895)] = 186470, - [SMALL_STATE(4896)] = 186477, - [SMALL_STATE(4897)] = 186484, - [SMALL_STATE(4898)] = 186491, - [SMALL_STATE(4899)] = 186498, - [SMALL_STATE(4900)] = 186505, - [SMALL_STATE(4901)] = 186512, - [SMALL_STATE(4902)] = 186519, - [SMALL_STATE(4903)] = 186526, - [SMALL_STATE(4904)] = 186533, - [SMALL_STATE(4905)] = 186540, - [SMALL_STATE(4906)] = 186547, - [SMALL_STATE(4907)] = 186554, - [SMALL_STATE(4908)] = 186561, - [SMALL_STATE(4909)] = 186568, - [SMALL_STATE(4910)] = 186575, - [SMALL_STATE(4911)] = 186582, - [SMALL_STATE(4912)] = 186589, - [SMALL_STATE(4913)] = 186596, - [SMALL_STATE(4914)] = 186603, - [SMALL_STATE(4915)] = 186610, - [SMALL_STATE(4916)] = 186617, - [SMALL_STATE(4917)] = 186624, - [SMALL_STATE(4918)] = 186631, - [SMALL_STATE(4919)] = 186638, - [SMALL_STATE(4920)] = 186645, - [SMALL_STATE(4921)] = 186652, - [SMALL_STATE(4922)] = 186659, - [SMALL_STATE(4923)] = 186666, - [SMALL_STATE(4924)] = 186673, - [SMALL_STATE(4925)] = 186680, - [SMALL_STATE(4926)] = 186687, - [SMALL_STATE(4927)] = 186694, - [SMALL_STATE(4928)] = 186701, - [SMALL_STATE(4929)] = 186708, - [SMALL_STATE(4930)] = 186715, - [SMALL_STATE(4931)] = 186722, - [SMALL_STATE(4932)] = 186729, - [SMALL_STATE(4933)] = 186736, - [SMALL_STATE(4934)] = 186743, - [SMALL_STATE(4935)] = 186750, - [SMALL_STATE(4936)] = 186757, - [SMALL_STATE(4937)] = 186764, - [SMALL_STATE(4938)] = 186771, - [SMALL_STATE(4939)] = 186778, - [SMALL_STATE(4940)] = 186785, - [SMALL_STATE(4941)] = 186792, - [SMALL_STATE(4942)] = 186799, - [SMALL_STATE(4943)] = 186806, - [SMALL_STATE(4944)] = 186813, - [SMALL_STATE(4945)] = 186820, - [SMALL_STATE(4946)] = 186827, - [SMALL_STATE(4947)] = 186834, - [SMALL_STATE(4948)] = 186841, - [SMALL_STATE(4949)] = 186848, - [SMALL_STATE(4950)] = 186855, - [SMALL_STATE(4951)] = 186862, - [SMALL_STATE(4952)] = 186869, - [SMALL_STATE(4953)] = 186876, - [SMALL_STATE(4954)] = 186883, - [SMALL_STATE(4955)] = 186890, - [SMALL_STATE(4956)] = 186897, - [SMALL_STATE(4957)] = 186904, - [SMALL_STATE(4958)] = 186911, - [SMALL_STATE(4959)] = 186918, - [SMALL_STATE(4960)] = 186925, - [SMALL_STATE(4961)] = 186932, - [SMALL_STATE(4962)] = 186939, - [SMALL_STATE(4963)] = 186946, - [SMALL_STATE(4964)] = 186953, - [SMALL_STATE(4965)] = 186960, - [SMALL_STATE(4966)] = 186967, - [SMALL_STATE(4967)] = 186974, - [SMALL_STATE(4968)] = 186981, - [SMALL_STATE(4969)] = 186988, - [SMALL_STATE(4970)] = 186995, - [SMALL_STATE(4971)] = 187002, - [SMALL_STATE(4972)] = 187009, - [SMALL_STATE(4973)] = 187016, - [SMALL_STATE(4974)] = 187023, - [SMALL_STATE(4975)] = 187030, - [SMALL_STATE(4976)] = 187037, - [SMALL_STATE(4977)] = 187044, - [SMALL_STATE(4978)] = 187051, - [SMALL_STATE(4979)] = 187058, - [SMALL_STATE(4980)] = 187065, - [SMALL_STATE(4981)] = 187072, - [SMALL_STATE(4982)] = 187079, - [SMALL_STATE(4983)] = 187086, - [SMALL_STATE(4984)] = 187093, - [SMALL_STATE(4985)] = 187100, - [SMALL_STATE(4986)] = 187107, - [SMALL_STATE(4987)] = 187114, - [SMALL_STATE(4988)] = 187121, - [SMALL_STATE(4989)] = 187128, - [SMALL_STATE(4990)] = 187135, - [SMALL_STATE(4991)] = 187142, - [SMALL_STATE(4992)] = 187149, - [SMALL_STATE(4993)] = 187156, - [SMALL_STATE(4994)] = 187163, - [SMALL_STATE(4995)] = 187170, - [SMALL_STATE(4996)] = 187177, - [SMALL_STATE(4997)] = 187184, - [SMALL_STATE(4998)] = 187191, - [SMALL_STATE(4999)] = 187198, - [SMALL_STATE(5000)] = 187205, - [SMALL_STATE(5001)] = 187212, - [SMALL_STATE(5002)] = 187219, - [SMALL_STATE(5003)] = 187226, - [SMALL_STATE(5004)] = 187233, - [SMALL_STATE(5005)] = 187240, - [SMALL_STATE(5006)] = 187247, - [SMALL_STATE(5007)] = 187254, - [SMALL_STATE(5008)] = 187261, - [SMALL_STATE(5009)] = 187268, - [SMALL_STATE(5010)] = 187275, - [SMALL_STATE(5011)] = 187282, - [SMALL_STATE(5012)] = 187289, - [SMALL_STATE(5013)] = 187296, - [SMALL_STATE(5014)] = 187303, - [SMALL_STATE(5015)] = 187310, - [SMALL_STATE(5016)] = 187317, - [SMALL_STATE(5017)] = 187324, - [SMALL_STATE(5018)] = 187331, - [SMALL_STATE(5019)] = 187338, - [SMALL_STATE(5020)] = 187345, - [SMALL_STATE(5021)] = 187352, - [SMALL_STATE(5022)] = 187359, - [SMALL_STATE(5023)] = 187366, - [SMALL_STATE(5024)] = 187373, - [SMALL_STATE(5025)] = 187380, - [SMALL_STATE(5026)] = 187387, - [SMALL_STATE(5027)] = 187394, - [SMALL_STATE(5028)] = 187401, - [SMALL_STATE(5029)] = 187408, - [SMALL_STATE(5030)] = 187415, - [SMALL_STATE(5031)] = 187422, - [SMALL_STATE(5032)] = 187429, - [SMALL_STATE(5033)] = 187436, - [SMALL_STATE(5034)] = 187443, - [SMALL_STATE(5035)] = 187450, - [SMALL_STATE(5036)] = 187457, - [SMALL_STATE(5037)] = 187464, - [SMALL_STATE(5038)] = 187471, - [SMALL_STATE(5039)] = 187478, - [SMALL_STATE(5040)] = 187485, -}; - -static const TSParseActionEntry ts_parse_actions[] = { - [0] = {.entry = {.count = 0, .reusable = false}}, - [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), - [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 65), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 61), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 47), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 84), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 81), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 48), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 32), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 31), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(829), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4297), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4987), - [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3197), - [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2453), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2453), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(123), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(245), - [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 2), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(304), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2496), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4984), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(231), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(579), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(15), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1717), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(479), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(559), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3844), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(932), - [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3693), - [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(959), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1031), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4393), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3440), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(113), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(118), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(121), - [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(133), - [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(958), - [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3960), - [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4227), - [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(4983), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3), - [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(829), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4297), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4987), - [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3197), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2453), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2453), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(84), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(245), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(304), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2496), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4984), - [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(231), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(579), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(15), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1717), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(479), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(559), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3844), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(932), - [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3693), - [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(959), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1031), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4393), - [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3440), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(113), - [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(118), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(121), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(133), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(958), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3960), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4227), - [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(4983), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 2), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(829), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4297), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4987), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3197), - [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2453), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2453), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(123), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(245), - [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(304), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2496), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4984), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(231), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(579), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(15), - [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1717), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(479), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(559), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3844), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(932), - [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3693), - [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(959), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1031), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4393), - [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3440), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(113), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(118), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(121), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(133), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(958), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3960), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4227), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4983), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, .production_id = 1), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, .production_id = 1), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, .production_id = 1), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, .production_id = 1), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2693), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2693), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2659), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2659), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 39), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 39), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 21), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 21), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 18), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 18), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 6), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 6), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(397), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), - [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(409), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2600), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 7), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(433), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(730), - [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3240), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3887), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(724), - [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3667), - [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(789), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4365), - [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3372), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(106), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(105), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(104), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(132), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(439), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(727), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4184), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5030), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 25), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 25), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(772), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3201), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3846), - [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(844), - [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3635), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1001), - [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4397), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3331), - [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(72), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(71), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(69), - [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), - [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(444), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(770), - [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4213), - [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5037), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 2), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 2), - [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(673), - [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3223), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2402), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3813), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(679), - [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3668), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(713), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4350), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3275), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(138), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(137), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(135), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(163), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(675), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(974), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(5025), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 12), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 12), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 11), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 11), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(999), - [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3246), - [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3761), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(893), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3640), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1084), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4314), - [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3305), - [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(240), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(243), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(244), - [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(257), - [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(454), - [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1000), - [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4186), - [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4998), - [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(758), - [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3152), - [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2429), - [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3878), - [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(733), - [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3703), - [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(845), - [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4385), - [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3348), - [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(83), - [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(82), - [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(81), - [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(112), - [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(757), - [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1183), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(5034), - [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(895), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3263), - [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3762), - [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(902), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3710), - [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1180), - [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4354), - [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3446), - [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(262), - [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(261), - [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(259), - [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(64), - [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(456), - [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(898), - [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4200), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5003), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 5), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 5), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 13), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 13), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(784), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3273), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3877), - [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(811), - [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3641), - [2070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(870), - [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4361), - [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3378), - [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(111), - [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(110), - [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(109), - [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(139), - [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(785), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5029), - [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(774), - [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3197), - [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2447), - [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3844), - [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(867), - [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3693), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1031), - [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4393), - [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3440), - [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(113), - [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(118), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(121), - [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(133), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(773), - [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1265), - [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4983), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1174), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1195), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(477), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1176), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4258), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(769), - [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3249), - [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2439), - [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3825), - [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(788), - [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3653), - [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(886), - [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4313), - [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3279), - [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(268), - [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(270), - [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(272), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(274), - [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(776), - [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1358), - [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4996), - [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(818), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3228), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3896), - [2235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(816), - [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3675), - [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(956), - [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4371), - [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3361), - [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(101), - [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(100), - [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(99), - [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(128), - [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(485), - [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(817), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5031), - [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(913), - [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3207), - [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3824), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(916), - [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3681), - [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1108), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4377), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3358), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(96), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(95), - [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(92), - [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(124), - [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(914), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5032), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(942), - [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3192), - [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3858), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1013), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3718), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1082), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4395), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3335), - [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(75), - [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(74), - [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(73), - [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(102), - [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(943), - [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5036), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(945), - [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2392), - [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(932), - [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(944), - [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(936), - [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3144), - [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3830), - [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1025), - [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3727), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1107), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4400), - [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3327), - [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(68), - [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(67), - [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(66), - [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(91), - [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(504), - [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(933), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5038), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1135), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3266), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3811), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1156), - [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3679), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1246), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4345), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3470), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(256), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(255), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(254), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(269), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(514), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1136), - [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5004), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1129), - [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3208), - [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3892), - [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1073), - [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3652), - [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1355), - [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4375), - [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3295), - [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(277), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(65), - [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(70), - [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(80), - [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1128), - [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4977), - [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1179), - [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3237), - [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3816), - [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1081), - [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3739), - [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1315), - [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4402), - [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3325), - [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(275), - [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(192), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(193), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(85), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1178), - [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5039), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1122), - [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3259), - [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3822), - [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1125), - [2737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3730), - [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1257), - [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4378), - [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3395), - [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(276), - [2752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(273), - [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(271), - [2758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(285), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1124), - [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5001), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1091), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3247), - [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3897), - [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1078), - [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3654), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1313), - [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4330), - [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3281), - [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(260), - [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(267), - [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(294), - [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(293), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(536), - [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1080), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4999), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1533), - [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1507), - [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(538), - [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1530), - [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4163), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), - [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1212), - [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3193), - [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3750), - [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1334), - [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3665), - [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1420), - [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4309), - [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3309), - [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(219), - [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(63), - [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(216), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), - [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1213), - [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5012), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1242), - [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1219), - [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(547), - [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1236), - [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1287), - [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1256), - [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1270), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1339), - [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3147), - [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3888), - [2971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1281), - [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3700), - [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1428), - [2980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4326), - [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3434), - [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(182), - [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(181), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(180), - [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(205), - [2998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1337), - [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5017), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1382), - [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2391), - [3148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1366), - [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1378), - [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1375), - [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1381), - [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1379), - [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1588), - [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3216), - [3169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3854), - [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1697), - [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3723), - [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1588), - [3181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1844), - [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4316), - [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3288), - [3190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(236), - [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(235), - [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(234), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(249), - [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(603), - [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1589), - [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4237), - [3211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5008), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), - [3250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4196), - [3253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1475), - [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3200), - [3259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(2408), - [3262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3796), - [3265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1518), - [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3677), - [3271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1475), - [3274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1659), - [3277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(4296), - [3280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(3280), - [3283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(227), - [3286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(226), - [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(225), - [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(237), - [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1471), - [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(1991), - [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 24), SHIFT_REPEAT(5010), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(3042), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4216), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(3595), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT(3079), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1573), - [3349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1656), - [3352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(636), - [3355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1687), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminated_statement, 2), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 2), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [3368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1580), - [3371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1576), - [3374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1579), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1620), - [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3272), - [3389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3753), - [3392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1683), - [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3658), - [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1620), - [3401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1784), - [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4331), - [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3413), - [3410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(248), - [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(247), - [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(246), - [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(258), - [3422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1622), - [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5006), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4171), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4161), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1756), - [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3205), - [3504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3798), - [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1783), - [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3736), - [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1756), - [3516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2016), - [3519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4310), - [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3277), - [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(232), - [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(230), - [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(229), - [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(242), - [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(659), - [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1758), - [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5009), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1891), - [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3159), - [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3836), - [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1745), - [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3738), - [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1891), - [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1969), - [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4329), - [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3472), - [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(174), - [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(173), - [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(172), - [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(191), - [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1894), - [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5019), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1763), - [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3145), - [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3808), - [3614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1729), - [3617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3744), - [3620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1763), - [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1957), - [3626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4332), - [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3481), - [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(170), - [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(169), - [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(168), - [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(183), - [3644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1770), - [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5020), - [3650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1878), - [3653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1918), - [3656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1880), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 10), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 10), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 23), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 23), - [3677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2611), - [3680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2611), - [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 22), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 22), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4201), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4197), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2643), - [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2643), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [3785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2702), - [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2702), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), - [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 15), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 15), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [3851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2020), - [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3232), - [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3832), - [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1951), - [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3656), - [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2020), - [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2070), - [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4353), - [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3411), - [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(131), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(130), - [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(129), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(158), - [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2021), - [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5026), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 7), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [3936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2653), - [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2653), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 1), - [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 1), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 1), REDUCE(sym__expansion_body, 2, .production_id = 20), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [4001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(872), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2636), - [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2636), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [4020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2670), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2670), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [4042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2534), - [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2534), - [4048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2558), - [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2558), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 4), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 4, .production_id = 7), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(2173), - [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(3196), - [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(866), - [4083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(866), - [4086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(1026), - [4089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(3870), - [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(2160), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(3731), - [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(2173), - [4101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(2231), - [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(4301), - [4107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(3297), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), - [4112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(223), - [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(222), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(221), - [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(233), - [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(2155), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 2), SHIFT_REPEAT(5011), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 7), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [4136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2647), - [4139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2647), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2678), - [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2678), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1036), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2704), - [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2704), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2593), - [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2593), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1132), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2615), - [4231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2615), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2547), - [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2547), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [4274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4164), - [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1357), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [4282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1352), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [4291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1347), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_pipeline, 2), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [4318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2656), - [4321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2656), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [4334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2677), - [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2677), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [4348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1274), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [4359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2627), - [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2627), - [4365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1282), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2699), - [4381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2699), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [4404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1424), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [4409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1367), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), - [4422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1), - [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2525), - [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2525), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(4292), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [4455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1447), - [4458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1423), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [4465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2536), - [4468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2536), - [4471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1374), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [4476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1468), - [4479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1564), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [4496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1502), - [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [4505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1486), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2630), - [4511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1487), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [4518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1677), - [4521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2922), - [4524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1418), - [4527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1032), - [4530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2337), - [4533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3206), - [4536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2368), - [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3271), - [4542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3861), - [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2382), - [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3642), - [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2368), - [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2425), - [4557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4337), - [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3467), - [4563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(252), - [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(251), - [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(250), - [4572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(263), - [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2363), - [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5005), - [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4124), - [4584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1591), - [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2817), - [4590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1426), - [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2526), - [4596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(981), - [4599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1959), - [4602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(832), - [4605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1947), - [4608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2206), - [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(921), - [4614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1647), - [4617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1996), - [4620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2842), - [4623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1864), - [4626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3506), - [4629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4005), - [4632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1638), - [4635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(388), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), - [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3112), - [4643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1804), - [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2438), - [4649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4138), - [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3569), - [4655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1251), - [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1171), - [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(848), - [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(370), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2590), - [4672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1228), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2256), - [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1849), - [4685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2055), - [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3920), - [4691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1243), - [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2047), - [4697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1320), - [4700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1065), - [4703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2782), - [4706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1038), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1504), - [4716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2761), - [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1087), - [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(976), - [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2342), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3527), - [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(412), - [4736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(997), - [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3993), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1294), - [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1035), - [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(711), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1), - [4775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [4791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1823), - [4794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1828), - [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 27), - [4799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 27), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2672), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 26), - [4866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 26), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), - [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 27), - [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 27), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 26), - [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 26), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1883), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [4949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2625), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2685), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 27), - [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 27), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 26), - [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 26), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [5073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2584), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 4), - [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 4), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [5098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2610), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2576), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2019), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, .production_id = 58), - [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 3), - [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 3), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2029), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2), - [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2), - [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2009), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 29), - [5203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 29), - [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), - [5207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [5213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2619), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), - [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 58), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), - [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [5278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2123), - [5281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 58), - [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2114), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2176), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [5371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2172), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2150), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [5449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat2, 1, .production_id = 1), - [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat2, 1, .production_id = 1), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [5455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2213), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [5472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2562), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [5507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2811), - [5510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3182), - [5513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3756), - [5516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2830), - [5519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3659), - [5522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2908), - [5525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4319), - [5528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3403), - [5531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(196), - [5534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(195), - [5537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(194), - [5540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(215), - [5543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2812), - [5546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5015), - [5549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [5571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3), - [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3), - [5575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3005), - [5578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3172), - [5581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(2330), - [5584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3760), - [5587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(2987), - [5590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3725), - [5593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3005), - [5596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3122), - [5599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(4336), - [5602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(3462), - [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), - [5607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(162), - [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(160), - [5613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(159), - [5616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(175), - [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(2999), - [5622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2), SHIFT_REPEAT(5022), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [5661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2), - [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2), - [5665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2), - [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2), - [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [5749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3), - [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 20), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 19), - [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1), - [5887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [5941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4044), - [5944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3166), - [5947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2398), - [5950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3862), - [5953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4031), - [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3719), - [5959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4044), - [5962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4141), - [5965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4328), - [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3453), - [5971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(178), - [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(177), - [5977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(176), - [5980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(197), - [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4046), - [5986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4215), - [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5018), - [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 20), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 19), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [6150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2299), - [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4), - [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4), - [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [6229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), - [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), - [6233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2394), - [6236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2394), - [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3945), - [6242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(4182), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [6277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3139), - [6280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3116), - [6283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3138), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [6320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3102), - [6323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3187), - [6326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3827), - [6329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3097), - [6332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3745), - [6335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3102), - [6338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3230), - [6341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4315), - [6344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3349), - [6347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(208), - [6350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(207), - [6353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(206), - [6356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(220), - [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3098), - [6362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5014), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [6397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2595), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [6698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 4, .production_id = 33), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 4, .production_id = 36), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [7000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2510), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [7781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2601), - [7784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2601), - [7787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), - [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), - [7791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4196), - [7794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [7796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4905), - [7799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2418), - [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [7804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2485), - [7807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3901), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [7812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 8), - [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 8), - [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [7820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2), - [7822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [7826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2705), - [7829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2705), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [7836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2509), - [7839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2509), - [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [7848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [7852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2818), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [7861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4216), - [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [7866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2881), - [7869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2689), - [7872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2689), - [7875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), - [7879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 18), - [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 18), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [7885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 42), - [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 42), - [7889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2397), - [7892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2470), - [7895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3913), - [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [7902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 41), - [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 41), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [7912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4691), - [7915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2441), - [7918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2489), - [7921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3912), - [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [7928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1), - [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 92), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 51), - [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2), - [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [7972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2431), - [7975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2469), - [7978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3916), - [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 53), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 55), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 45), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [8021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4161), - [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 71), - [8026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2517), - [8029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2517), - [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4171), - [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 30), - [8037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2467), - [8040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2494), - [8043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3904), - [8046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2931), - [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 69), - [8051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4201), - [8054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), - [8056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2418), - [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), - [8061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3949), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [8068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2907), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [8093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4197), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [8124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2449), - [8127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2474), - [8130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3909), - [8133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 49), - [8135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 49), - [8137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 17), - [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 17), - [8141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 40), - [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 40), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [8155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2397), - [8158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3944), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 32), - [8185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 32), - [8187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 30), - [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 30), - [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), - [8193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 49), - [8199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 49), - [8201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 4), - [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 4), - [8205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 50), - [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 50), - [8209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), - [8211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), - [8213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 16), - [8215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 16), - [8217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), - [8219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), - [8221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2), - [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2), - [8225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 44), - [8227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 44), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [8231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 1, .production_id = 1), - [8233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, .production_id = 1), - [8235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 28), - [8237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 28), - [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4), - [8241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4), - [8243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_body_repeat1, 1), - [8245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1), - [8247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 57), - [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 57), - [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 31), - [8253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 31), - [8255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), - [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), - [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 41), - [8261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 41), - [8263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [8271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 32), - [8273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 32), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [8277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 41), - [8279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 41), - [8281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5), - [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [8287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2), - [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2), - [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 31), - [8293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 31), - [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [8297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [8299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 40), - [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 40), - [8303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2431), - [8306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3947), - [8309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2441), - [8312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3955), - [8315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 31), - [8317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 31), - [8319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 30), - [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 30), - [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 32), - [8325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 32), - [8327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 4), - [8329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 4), - [8331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 30), - [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 30), - [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 32), - [8357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 32), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2), - [8363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2), - [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 31), - [8367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 31), - [8369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 30), - [8371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 30), - [8373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 32), - [8375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 32), - [8377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3105), - [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 31), - [8382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 31), - [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 17), - [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 17), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [8392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2467), - [8395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3957), - [8398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2592), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [8407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2449), - [8410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3939), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [8421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2511), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [8466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4775), - [8469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2465), - [8472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2465), - [8475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4775), - [8478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2482), - [8481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3918), - [8484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 85), - [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 85), - [8488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 48), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [8498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 112), - [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 112), - [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 84), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [8524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 103), - [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 103), - [8528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 84), - [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [8534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [8550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 87), - [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 87), - [8554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 65), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [8566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 82), - [8568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 82), - [8570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 32), - [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [8588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [8592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [8596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 110), - [8598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 110), - [8600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 81), - [8602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 95), - [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 95), - [8606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 61), - [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [8624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 79), - [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 79), - [8628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 31), - [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [8634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [8642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 77), - [8644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 77), - [8646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 61), - [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [8662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 99), - [8664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 99), - [8666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 81), - [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [8680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 105), - [8682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 105), - [8684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 65), - [8686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [8690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3471), - [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [8699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 59), - [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 59), - [8703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 47), - [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [8709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2), - [8723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2421), - [8726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2477), - [8729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3910), - [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [8754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 101), - [8756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 101), - [8758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 32), - [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [8788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 97), - [8790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 97), - [8792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 31), - [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [8798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 63), - [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 63), - [8802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 48), - [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [8826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4164), - [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [8841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 75), - [8843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 75), - [8845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 47), - [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [8889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 111), - [8891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 111), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [8917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 96), - [8919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 96), - [8921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2585), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [8934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 78), - [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 78), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [8954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 98), - [8956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 98), - [8958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 83), - [8960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 83), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [8966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 76), - [8968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 76), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [8984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 104), - [8986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 104), - [8988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 100), - [8990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 100), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [9034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 88), - [9036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 88), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [9058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 64), - [9060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 64), - [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [9066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [9138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 106), - [9140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 106), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [9154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 113), - [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 113), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [9166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 102), - [9168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 102), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [9188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 86), - [9190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 86), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [9204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(4292), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [9213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2606), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [9244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3503), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [9277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 80), - [9279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 80), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [9285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4851), - [9288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2433), - [9291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2433), - [9294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4851), - [9297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2503), - [9300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3905), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [9353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 60), - [9355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 60), - [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [9361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2421), - [9364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3950), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [9371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3559), - [9374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3553), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [9379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2621), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [9384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2465), - [9387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2465), - [9390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3953), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [9395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [9401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3580), - [9404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2433), - [9407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2433), - [9410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3964), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [9415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(3573), - [9418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2), - [9420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), - [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [9550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [9554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [9560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [9564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [9580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3252), - [9583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3900), - [9586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [9588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3922), - [9591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3291), - [9594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(292), - [9597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(291), - [9600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(290), - [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [9605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [9609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [9625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [9639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), - [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), - [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [9667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [9685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [9703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [9707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [9709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [9715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [9717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [9719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [9721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [9729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [9731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [9735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [9741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [9743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [9745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [9753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [9765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [9767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [9773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [9775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [9781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [9783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [9901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [9929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [9943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [9961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [9969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), - [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [9989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [9991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [9993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [9995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [10005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [10007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [10013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [10037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), - [10039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [10047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [10053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [10067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3906), - [10070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3384), - [10073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(116), - [10076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(115), - [10079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(114), - [10082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3907), - [10085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [10089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [10099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [10109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [10115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [10123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [10125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [10133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [10135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [10137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [10141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [10149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [10157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [10161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [10165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_body, 4), - [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [10169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [10175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_body, 4, .production_id = 7), - [10177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [10181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [10187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [10189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [10209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2557), - [10212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2557), - [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [10235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [10243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [10247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [10251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [10259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [10283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4034), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [10378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5, .production_id = 33), - [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [10392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5, .production_id = 36), - [10394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 31), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [10398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5, .production_id = 67), - [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [10406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 32), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [10412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [10414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(302), - [10417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), - [10419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2978), - [10422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), - [10424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2628), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [10431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2549), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [10438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5, .production_id = 66), - [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [10456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 84), - [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [10464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 61), - [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [10472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 65), - [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [10480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 81), - [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [10508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 48), - [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [10514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4199), - [10517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 43), - [10519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 43), - [10521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 32), - [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [10527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 47), - [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [10539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 31), - [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [10545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4248), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [10558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 108), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [10562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 109), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [10622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), SHIFT_REPEAT(3165), - [10625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 62), - [10627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 62), SHIFT_REPEAT(2426), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [10648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 54), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [10658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 52), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [10672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 46), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [10676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 56), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [10690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 107), - [10692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 90), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [10698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 89), - [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [10704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2944), - [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [10709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 70), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [10721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 93), - [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [10725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 94), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [10737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 91), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [10743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 68), - [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [10765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, .production_id = 114), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [10769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [10773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 72), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [10785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 73), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 74), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [10811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2963), - [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [10842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 33), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [10848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 36), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [10912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 38), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [10976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 37), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [10980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 35), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [11036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 34), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [11234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 6, .production_id = 67), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [11366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 6, .production_id = 36), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [11370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 6, .production_id = 66), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [11374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 6, .production_id = 33), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [11586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5), - [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [11616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 5, .production_id = 7), - [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [11660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [11662] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), -}; - -#ifdef __cplusplus -extern "C" { -#endif -void *tree_sitter_bash_external_scanner_create(void); -void tree_sitter_bash_external_scanner_destroy(void *); -bool tree_sitter_bash_external_scanner_scan(void *, TSLexer *, const bool *); -unsigned tree_sitter_bash_external_scanner_serialize(void *, char *); -void tree_sitter_bash_external_scanner_deserialize(void *, const char *, unsigned); - -#ifdef _WIN32 -#define extern __declspec(dllexport) -#endif - -extern const TSLanguage *tree_sitter_bash(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_word, - .external_scanner = { - &ts_external_scanner_states[0][0], - ts_external_scanner_symbol_map, - tree_sitter_bash_external_scanner_create, - tree_sitter_bash_external_scanner_destroy, - tree_sitter_bash_external_scanner_scan, - tree_sitter_bash_external_scanner_serialize, - tree_sitter_bash_external_scanner_deserialize, - }, - .primary_state_ids = ts_primary_state_ids, - }; - return &language; -} -#ifdef __cplusplus -} -#endif diff --git a/vendored_parsers/tree-sitter-bash/src/scanner.c b/vendored_parsers/tree-sitter-bash/src/scanner.c deleted file mode 100644 index 7e8105970..000000000 --- a/vendored_parsers/tree-sitter-bash/src/scanner.c +++ /dev/null @@ -1,745 +0,0 @@ -#include <assert.h> -#include <ctype.h> -#include <string.h> -#include <tree_sitter/parser.h> -#include <wctype.h> - -#define MAX(a, b) ((a) > (b) ? (a) : (b)) - -#define MIN(a, b) ((a) < (b) ? (a) : (b)) - -#define STRING_RESIZE(vec, _cap) \ - void *tmp = realloc((vec).data, ((_cap) + 1) * sizeof((vec).data[0])); \ - assert(tmp != NULL); \ - (vec).data = tmp; \ - memset((vec).data + (vec).len, 0, \ - (((_cap) + 1) - (vec).len) * sizeof((vec).data[0])); \ - (vec).cap = (_cap); - -#define STRING_GROW(vec, _cap) \ - if ((vec).cap < (_cap)) { \ - STRING_RESIZE((vec), (_cap)); \ - } - -#define STRING_PUSH(vec, el) \ - if ((vec).cap == (vec).len) { \ - STRING_RESIZE((vec), MAX(16, (vec).len * 2)); \ - } \ - (vec).data[(vec).len++] = (el); - -#define STRING_FREE(vec) \ - if ((vec).data != NULL) \ - free((vec).data); - -#define STRING_CLEAR(vec) \ - { \ - (vec).len = 0; \ - memset((vec).data, 0, (vec).cap * sizeof(char)); \ - } - -enum TokenType { - HEREDOC_START, - SIMPLE_HEREDOC_BODY, - HEREDOC_BODY_BEGINNING, - HEREDOC_BODY_MIDDLE, - HEREDOC_END, - FILE_DESCRIPTOR, - EMPTY_VALUE, - CONCAT, - VARIABLE_NAME, - REGEX, - REGEX_NO_SLASH, - REGEX_NO_SPACE, - EXTGLOB_PATTERN, - BARE_DOLLAR, - BRACE_START, - CLOSING_BRACE, - CLOSING_BRACKET, - HEREDOC_ARROW, - HEREDOC_ARROW_DASH, - NEWLINE, -}; - -typedef struct { - uint32_t cap; - uint32_t len; - char *data; -} String; - -static String string_new() { - return (String){.cap = 16, .len = 0, .data = calloc(1, sizeof(char) * 17)}; -} - -typedef struct { - bool heredoc_is_raw; - bool started_heredoc; - bool heredoc_allows_indent; - String heredoc_delimiter; - String current_leading_word; -} Scanner; - -static inline void advance(TSLexer *lexer) { lexer->advance(lexer, false); } - -static inline void skip(TSLexer *lexer) { lexer->advance(lexer, true); } - -static inline bool in_error_recovery(const bool *valid_symbols) { - return valid_symbols[HEREDOC_START] && valid_symbols[HEREDOC_END] && - valid_symbols[FILE_DESCRIPTOR] && valid_symbols[EMPTY_VALUE] && - valid_symbols[CONCAT] && valid_symbols[REGEX]; -} - -static inline void reset(Scanner *scanner) { - scanner->heredoc_is_raw = false; - scanner->started_heredoc = false; - scanner->heredoc_allows_indent = false; - STRING_CLEAR(scanner->heredoc_delimiter); -} - -static unsigned serialize(Scanner *scanner, char *buffer) { - if (scanner->heredoc_delimiter.len + 3 >= - TREE_SITTER_SERIALIZATION_BUFFER_SIZE) { - return 0; - } - buffer[0] = (char)scanner->heredoc_is_raw; - buffer[1] = (char)scanner->started_heredoc; - buffer[2] = (char)scanner->heredoc_allows_indent; - memcpy(&buffer[3], scanner->heredoc_delimiter.data, - scanner->heredoc_delimiter.len); - return scanner->heredoc_delimiter.len + 3; -} - -static void deserialize(Scanner *scanner, const char *buffer, unsigned length) { - if (length == 0) { - reset(scanner); - } else { - scanner->heredoc_is_raw = buffer[0]; - scanner->started_heredoc = buffer[1]; - scanner->heredoc_allows_indent = buffer[2]; - scanner->heredoc_delimiter.len = length - 3; - STRING_GROW(scanner->heredoc_delimiter, scanner->heredoc_delimiter.len); - memcpy(scanner->heredoc_delimiter.data, &buffer[3], - scanner->heredoc_delimiter.len); - } -} - -/** - * Consume a "word" in POSIX parlance, and returns it unquoted. - * - * This is an approximate implementation that doesn't deal with any - * POSIX-mandated substitution, and assumes the default value for - * IFS. - */ -static bool advance_word(TSLexer *lexer, String *unquoted_word) { - bool empty = true; - - int32_t quote = 0; - if (lexer->lookahead == '\'' || lexer->lookahead == '"') { - quote = lexer->lookahead; - advance(lexer); - } - - while (lexer->lookahead && - !(quote ? lexer->lookahead == quote : iswspace(lexer->lookahead))) { - if (lexer->lookahead == '\\') { - advance(lexer); - if (!lexer->lookahead) { - return false; - } - } - empty = false; - STRING_PUSH(*unquoted_word, lexer->lookahead); - advance(lexer); - } - - if (quote && lexer->lookahead == quote) { - advance(lexer); - } - - return !empty; -} - -static bool scan_heredoc_start(Scanner *scanner, TSLexer *lexer) { - while (iswspace(lexer->lookahead)) { - skip(lexer); - } - - lexer->result_symbol = HEREDOC_START; - scanner->heredoc_is_raw = lexer->lookahead == '\'' || - lexer->lookahead == '"' || - lexer->lookahead == '\\'; - scanner->started_heredoc = false; - STRING_CLEAR(scanner->heredoc_delimiter); - - bool found_delimiter = advance_word(lexer, &scanner->heredoc_delimiter); - if (!found_delimiter) - STRING_CLEAR(scanner->heredoc_delimiter); - return found_delimiter; -} - -static bool scan_heredoc_end_identifier(Scanner *scanner, TSLexer *lexer) { - STRING_CLEAR(scanner->current_leading_word); - // Scan the first 'n' characters on this line, to see if they match the - // heredoc delimiter - int32_t size = 0; - while (lexer->lookahead != '\0' && lexer->lookahead != '\n' && - ((int32_t)scanner->heredoc_delimiter.data[size++]) == - lexer->lookahead && - scanner->current_leading_word.len < scanner->heredoc_delimiter.len) { - STRING_PUSH(scanner->current_leading_word, lexer->lookahead); - advance(lexer); - } - return strcmp(scanner->current_leading_word.data, - scanner->heredoc_delimiter.data) == 0; -} - -static bool scan_heredoc_content(Scanner *scanner, TSLexer *lexer, - enum TokenType middle_type, - enum TokenType end_type) { - bool did_advance = false; - - for (;;) { - switch (lexer->lookahead) { - case '\0': { - if (lexer->eof(lexer) && did_advance) { - reset(scanner); - lexer->result_symbol = end_type; - return true; - } - return false; - } - - case '\\': { - did_advance = true; - advance(lexer); - advance(lexer); - break; - } - - case '$': { - if (scanner->heredoc_is_raw) { - did_advance = true; - advance(lexer); - break; - } - if (did_advance) { - lexer->result_symbol = middle_type; - scanner->started_heredoc = true; - return true; - } - if (middle_type == HEREDOC_BODY_BEGINNING && - lexer->get_column(lexer) == 0) { - lexer->result_symbol = middle_type; - scanner->started_heredoc = true; - return true; - } - return false; - } - - case '\n': { - if (!did_advance) { - skip(lexer); - } else { - advance(lexer); - } - did_advance = true; - if (scanner->heredoc_allows_indent) { - while (iswspace(lexer->lookahead)) { - advance(lexer); - } - } - lexer->result_symbol = - scanner->started_heredoc ? middle_type : end_type; - lexer->mark_end(lexer); - if (scan_heredoc_end_identifier(scanner, lexer)) { - return true; - } - break; - } - - default: { - if (lexer->get_column(lexer) == 0) { - // an alternative is to check the starting column of the - // heredoc body and track that statefully - while (iswspace(lexer->lookahead)) { - skip(lexer); - } - if (end_type != SIMPLE_HEREDOC_BODY) { - lexer->result_symbol = middle_type; - if (scan_heredoc_end_identifier(scanner, lexer)) { - return true; - } - } - if (end_type == SIMPLE_HEREDOC_BODY) { - lexer->result_symbol = end_type; - lexer->mark_end(lexer); - if (scan_heredoc_end_identifier(scanner, lexer)) { - return true; - } - } - } - did_advance = true; - advance(lexer); - break; - } - } - } -} - -static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { - if (valid_symbols[CONCAT]) { - if (!(lexer->lookahead == 0 || iswspace(lexer->lookahead) || - lexer->lookahead == '\\' || lexer->lookahead == '>' || - lexer->lookahead == '<' || lexer->lookahead == ')' || - lexer->lookahead == '(' || lexer->lookahead == ';' || - lexer->lookahead == '&' || lexer->lookahead == '|' || - (lexer->lookahead == '}' && valid_symbols[CLOSING_BRACE]) || - (lexer->lookahead == ']' && valid_symbols[CLOSING_BRACKET]))) { - lexer->result_symbol = CONCAT; - // This sucks - if (lexer->lookahead == '`') { - lexer->mark_end(lexer); - advance(lexer); - while (lexer->lookahead != '`' && !lexer->eof(lexer)) { - advance(lexer); - } - if (lexer->eof(lexer)) { - return false; - } - if (lexer->lookahead == '`') { - advance(lexer); - } - return iswspace(lexer->lookahead) || lexer->eof(lexer); - } - return true; - } - } - - if (valid_symbols[BARE_DOLLAR] && !in_error_recovery(valid_symbols)) { - while (iswspace(lexer->lookahead)) { - skip(lexer); - } - - if (lexer->lookahead == '$') { - advance(lexer); - lexer->result_symbol = BARE_DOLLAR; - return iswspace(lexer->lookahead) || lexer->eof(lexer); - } - } - - if (valid_symbols[EMPTY_VALUE]) { - if (iswspace(lexer->lookahead) || lexer->eof(lexer) || - lexer->lookahead == ';' || lexer->lookahead == '&') { - lexer->result_symbol = EMPTY_VALUE; - return true; - } - } - - if ((valid_symbols[HEREDOC_BODY_BEGINNING] || - valid_symbols[SIMPLE_HEREDOC_BODY]) && - scanner->heredoc_delimiter.len > 0 && !scanner->started_heredoc && - !in_error_recovery(valid_symbols)) { - return scan_heredoc_content(scanner, lexer, HEREDOC_BODY_BEGINNING, - SIMPLE_HEREDOC_BODY); - } - - if (valid_symbols[HEREDOC_END]) { - if (scan_heredoc_end_identifier(scanner, lexer)) { - reset(scanner); - lexer->result_symbol = HEREDOC_END; - return true; - } - } - - if (valid_symbols[HEREDOC_BODY_MIDDLE] && - scanner->heredoc_delimiter.len > 0 && scanner->started_heredoc && - !in_error_recovery(valid_symbols)) { - return scan_heredoc_content(scanner, lexer, HEREDOC_BODY_MIDDLE, - HEREDOC_END); - } - - if (valid_symbols[HEREDOC_START] && !in_error_recovery(valid_symbols)) { - return scan_heredoc_start(scanner, lexer); - } - - if ((valid_symbols[VARIABLE_NAME] || valid_symbols[FILE_DESCRIPTOR] || - valid_symbols[HEREDOC_ARROW]) && - !valid_symbols[REGEX_NO_SLASH]) { - for (;;) { - if (lexer->lookahead == ' ' || lexer->lookahead == '\t' || - lexer->lookahead == '\r' || - (lexer->lookahead == '\n' && !valid_symbols[NEWLINE])) { - skip(lexer); - } else if (lexer->lookahead == '\\') { - skip(lexer); - if (lexer->lookahead == '\r') { - skip(lexer); - } - if (lexer->lookahead == '\n') { - skip(lexer); - } else { - return false; - } - } else { - break; - } - } - - // no '*', '@', '?', '-', '$', '0', '_' - if (lexer->lookahead == '*' || lexer->lookahead == '@' || - lexer->lookahead == '?' || lexer->lookahead == '-' || - lexer->lookahead == '$' || lexer->lookahead == '0' || - lexer->lookahead == '_') { - lexer->mark_end(lexer); - advance(lexer); - if (lexer->lookahead == '=' || lexer->lookahead == '[' || - lexer->lookahead == ':' || lexer->lookahead == '-' || - lexer->lookahead == '%' || lexer->lookahead == '#' || - lexer->lookahead == '/') - return false; - } - - if (valid_symbols[HEREDOC_ARROW] && lexer->lookahead == '<') { - advance(lexer); - if (lexer->lookahead == '<') { - advance(lexer); - if (lexer->lookahead == '-') { - advance(lexer); - scanner->heredoc_allows_indent = true; - lexer->result_symbol = HEREDOC_ARROW_DASH; - } else if (lexer->lookahead == '<' || lexer->lookahead == '=') { - return false; - } else { - scanner->heredoc_allows_indent = false; - lexer->result_symbol = HEREDOC_ARROW; - } - return true; - } - return false; - } - - bool is_number = true; - if (iswdigit(lexer->lookahead)) { - advance(lexer); - } else if (iswalpha(lexer->lookahead) || lexer->lookahead == '_') { - is_number = false; - advance(lexer); - } else { - if (lexer->lookahead == '{') { - goto brace_start; - } - return false; - } - - for (;;) { - if (iswdigit(lexer->lookahead)) { - advance(lexer); - } else if (iswalpha(lexer->lookahead) || lexer->lookahead == '_') { - is_number = false; - advance(lexer); - } else { - break; - } - } - - if (is_number && valid_symbols[FILE_DESCRIPTOR] && - (lexer->lookahead == '>' || lexer->lookahead == '<')) { - lexer->result_symbol = FILE_DESCRIPTOR; - return true; - } - - if (valid_symbols[VARIABLE_NAME]) { - if (lexer->lookahead == '+') { - lexer->mark_end(lexer); - advance(lexer); - if (lexer->lookahead == '=' || lexer->lookahead == ':' || - valid_symbols[CLOSING_BRACE]) { - lexer->result_symbol = VARIABLE_NAME; - return true; - } - return false; - } - if (lexer->lookahead == '=' || lexer->lookahead == '[' || - lexer->lookahead == ':' || lexer->lookahead == '%' || - (lexer->lookahead == '#' && !is_number) || - lexer->lookahead == '/') { - lexer->mark_end(lexer); - lexer->result_symbol = VARIABLE_NAME; - return true; - } - - if (lexer->lookahead == '?') { - lexer->mark_end(lexer); - advance(lexer); - lexer->result_symbol = VARIABLE_NAME; - return isalpha(lexer->lookahead); - } - } - - return false; - } - - if (valid_symbols[REGEX] || valid_symbols[REGEX_NO_SLASH] || - valid_symbols[REGEX_NO_SPACE] && !in_error_recovery(valid_symbols)) { - if (valid_symbols[REGEX] || valid_symbols[REGEX_NO_SPACE]) { - while (iswspace(lexer->lookahead)) { - skip(lexer); - } - } - - if (lexer->lookahead != '"' && lexer->lookahead != '\'' || - (lexer->lookahead == '$' && valid_symbols[REGEX_NO_SLASH])) { - typedef struct { - bool done; - bool advanced_once; - bool found_non_alnumdollarunderdash; - uint32_t paren_depth; - uint32_t bracket_depth; - uint32_t brace_depth; - } State; - - lexer->mark_end(lexer); - - State state = {false, false, false, 0, 0, 0}; - while (!state.done) { - switch (lexer->lookahead) { - case '\0': - return false; - case '(': - state.paren_depth++; - break; - case '[': - state.bracket_depth++; - break; - case '{': - state.brace_depth++; - break; - case ')': - if (state.paren_depth == 0) { - state.done = true; - } - state.paren_depth--; - break; - case ']': - if (state.bracket_depth == 0) { - state.done = true; - } - state.bracket_depth--; - break; - case '}': - if (state.brace_depth == 0) { - state.done = true; - } - state.brace_depth--; - break; - } - - if (!state.done) { - if (valid_symbols[REGEX]) { - bool was_space = iswspace(lexer->lookahead); - advance(lexer); - state.advanced_once = true; - if (!was_space) { - lexer->mark_end(lexer); - } - } else if (valid_symbols[REGEX_NO_SLASH]) { - if (lexer->lookahead == '/') { - lexer->mark_end(lexer); - lexer->result_symbol = REGEX_NO_SLASH; - return true; - } - if (lexer->lookahead == '\\') { - advance(lexer); - if (!lexer->eof(lexer)) { - advance(lexer); - } - } else { - bool was_space = iswspace(lexer->lookahead); - advance(lexer); - if (!was_space) { - lexer->mark_end(lexer); - } - } - } else if (valid_symbols[REGEX_NO_SPACE]) { - if (lexer->lookahead == '\\') { - state.found_non_alnumdollarunderdash = true; - advance(lexer); - if (!lexer->eof(lexer)) { - advance(lexer); - } - } else { - if (iswspace(lexer->lookahead)) { - lexer->mark_end(lexer); - lexer->result_symbol = REGEX_NO_SPACE; - return state.found_non_alnumdollarunderdash; - } - /* state. = true; */ - if (!iswalnum(lexer->lookahead) && - lexer->lookahead != '$' && - lexer->lookahead != '-' && - lexer->lookahead != '_') { - state.found_non_alnumdollarunderdash = true; - } - advance(lexer); - } - } - } - } - - lexer->result_symbol = - valid_symbols[REGEX_NO_SLASH] ? REGEX_NO_SLASH - : valid_symbols[REGEX_NO_SPACE] ? REGEX_NO_SPACE - : REGEX; - if (valid_symbols[REGEX] && !state.advanced_once) { - return false; - } - return true; - } - } - - if (valid_symbols[EXTGLOB_PATTERN]) { - // first skip ws, then check for ? * + @ ! - while (iswspace(lexer->lookahead)) { - skip(lexer); - } - - if (lexer->lookahead == '?' || lexer->lookahead == '*' || - lexer->lookahead == '+' || lexer->lookahead == '@' || - lexer->lookahead == '!') { - lexer->mark_end(lexer); - advance(lexer); - - if (lexer->lookahead != '(') { - return false; - } - - typedef struct { - bool done; - uint32_t paren_depth; - uint32_t bracket_depth; - uint32_t brace_depth; - } State; - - State state = {false, 0, 0, 0}; - while (!state.done) { - switch (lexer->lookahead) { - case '\0': - return false; - case '(': - state.paren_depth++; - break; - case '[': - state.bracket_depth++; - break; - case '{': - state.brace_depth++; - break; - case ')': - if (state.paren_depth == 0) { - state.done = true; - } - state.paren_depth--; - break; - case ']': - if (state.bracket_depth == 0) { - state.done = true; - } - state.bracket_depth--; - break; - case '}': - if (state.brace_depth == 0) { - state.done = true; - } - state.brace_depth--; - break; - } - - if (!state.done) { - bool was_space = iswspace(lexer->lookahead); - advance(lexer); - if (!was_space) { - lexer->mark_end(lexer); - } - } - } - - lexer->result_symbol = EXTGLOB_PATTERN; - return true; - } - - return false; - } - -brace_start: - if (valid_symbols[BRACE_START] && !in_error_recovery(valid_symbols)) { - while (iswspace(lexer->lookahead)) { - skip(lexer); - } - - if (lexer->lookahead != '{') { - return false; - } - - advance(lexer); - lexer->mark_end(lexer); - - while (isdigit(lexer->lookahead)) { - advance(lexer); - } - - if (lexer->lookahead != '.') { - return false; - } - advance(lexer); - - if (lexer->lookahead != '.') { - return false; - } - advance(lexer); - - while (isdigit(lexer->lookahead)) { - advance(lexer); - } - - if (lexer->lookahead != '}') { - return false; - } - - lexer->result_symbol = BRACE_START; - return true; - } - - return false; -} - -void *tree_sitter_bash_external_scanner_create() { - Scanner *scanner = calloc(1, sizeof(Scanner)); - scanner->heredoc_delimiter = string_new(); - scanner->current_leading_word = string_new(); - return scanner; -} - -bool tree_sitter_bash_external_scanner_scan(void *payload, TSLexer *lexer, - const bool *valid_symbols) { - Scanner *scanner = (Scanner *)payload; - return scan(scanner, lexer, valid_symbols); -} - -unsigned tree_sitter_bash_external_scanner_serialize(void *payload, - char *state) { - Scanner *scanner = (Scanner *)payload; - return serialize(scanner, state); -} - -void tree_sitter_bash_external_scanner_deserialize(void *payload, - const char *state, - unsigned length) { - Scanner *scanner = (Scanner *)payload; - deserialize(scanner, state, length); -} - -void tree_sitter_bash_external_scanner_destroy(void *payload) { - Scanner *scanner = (Scanner *)payload; - STRING_FREE(scanner->heredoc_delimiter); - STRING_FREE(scanner->current_leading_word); - free(scanner); -} diff --git a/vendored_parsers/tree-sitter-bash/src/tree_sitter/parser.h b/vendored_parsers/tree-sitter-bash/src/tree_sitter/parser.h deleted file mode 100644 index d21032599..000000000 --- a/vendored_parsers/tree-sitter-bash/src/tree_sitter/parser.h +++ /dev/null @@ -1,224 +0,0 @@ -#ifndef TREE_SITTER_PARSER_H_ -#define TREE_SITTER_PARSER_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -#include <stdbool.h> -#include <stdint.h> -#include <stdlib.h> - -#define ts_builtin_sym_error ((TSSymbol)-1) -#define ts_builtin_sym_end 0 -#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 - -#ifndef TREE_SITTER_API_H_ -typedef uint16_t TSStateId; -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; \ - eof = lexer->eof(lexer); - -#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/vendored_parsers/tree-sitter-bash/test/corpus/commands.txt b/vendored_parsers/tree-sitter-bash/test/corpus/commands.txt deleted file mode 100644 index 12cd34e76..000000000 --- a/vendored_parsers/tree-sitter-bash/test/corpus/commands.txt +++ /dev/null @@ -1,491 +0,0 @@ -=============================== -Commands -=============================== - -whoami - ---- - -(program - (command (command_name (word)))) - -=============================== -Commands with arguments -=============================== - -cat file1.txt -git diff --word-diff=color -- file1.txt file2.txt -echo $sing\ -levar - ---- - -(program - (command (command_name (word)) (word)) - (command (command_name (word)) (word) (word) (word) (word) (word)) - (command (command_name (word)) (simple_expansion (variable_name)) (word))) - -=============================== -Quoted command names -=============================== - -"$a/$b" c - ---- - -(program - (command - (command_name (string (simple_expansion (variable_name)) (simple_expansion (variable_name)))) - (word))) - -=============================== -Commands with numeric arguments -=============================== - -exit 1 - ---- - -(program - (command (command_name (word)) (number))) - -=================================== -Commands with environment variables -=================================== - -VAR1=1 ./script/test -VAR1=a VAR2="ok" git diff --word-diff=color - ---- - -(program - (command - (variable_assignment (variable_name) (number)) - (command_name (word))) - (command - (variable_assignment (variable_name) (word)) - (variable_assignment (variable_name) (string)) - (command_name (word)) - (word) - (word))) - -=================================== -Empty environment variables -=================================== - -VAR1= -VAR2= echo - ---- - -(program - (variable_assignment (variable_name)) - (command (variable_assignment (variable_name)) (command_name (word)))) - -=============================== -File redirects -=============================== - -whoami > /dev/null -cat a b > /dev/null -2>&1 whoami -echo "foobar" >&2 -[ ! command -v go &>/dev/null ] && return - -if [ ]; then - >aa >bb -fi - ---- - -(program - (redirected_statement - (command (command_name (word))) - (file_redirect (word))) - (redirected_statement - (command (command_name (word)) (word) (word)) - (file_redirect (word))) - (command - (file_redirect (file_descriptor) (number)) - (command_name (word))) - (redirected_statement - (command (command_name (word)) (string)) - (file_redirect (number))) - (list - (test_command - (redirected_statement - (negated_command - (command (command_name (word)) (word) (word))) - (file_redirect (word)))) - (command (command_name (word)))) - (if_statement - (test_command) - (redirected_statement - (file_redirect (word)) - (file_redirect (word))))) - -=============================== -File redirects (noclobber override) -=============================== - -whoami >| /dev/null -cat a b >| /dev/null - ---- - -(program - (redirected_statement - (command (command_name (word))) - (file_redirect (word))) - (redirected_statement - (command (command_name (word)) (word) (word)) - (file_redirect (word)))) - -=============================== -Heredoc redirects -=============================== - -node <<JS -console.log("hi") -JS - -bash -c <<JS -echo hi -JS - ---- - -(program - (redirected_statement - (command - (command_name - (word))) - (heredoc_redirect - (heredoc_start) - (simple_heredoc_body) - (heredoc_end))) - (redirected_statement - (command - (command_name - (word)) - (word)) - (heredoc_redirect - (heredoc_start) - (simple_heredoc_body) - (heredoc_end)))) - -=============================== -Heredocs with variables -=============================== - -node <<JS -a $B ${C} -JS - -exit - ---- - -(program - (redirected_statement - (command - (command_name - (word))) - (heredoc_redirect - (heredoc_start) - (heredoc_body - (simple_expansion - (variable_name)) - (expansion - (variable_name))) - (heredoc_end))) - (command - (command_name - (word)))) - -================================= -Heredocs with file redirects -================================= - -cat <<EOF > $tmpfile -a $B ${C} -EOF - -wc -l $tmpfile - ---- - -(program - (redirected_statement - (command - (command_name - (word))) - (heredoc_redirect - (heredoc_start) - (file_redirect - (simple_expansion - (variable_name))) - (heredoc_body - (simple_expansion - (variable_name)) - (expansion - (variable_name))) - (heredoc_end))) - (command - (command_name - (word)) - (word) - (simple_expansion - (variable_name)))) - -================================= -Heredocs with pipes -================================= - -one <<EOF | grep two -three -EOF - ---- - -(program - (redirected_statement - (command - (command_name - (word))) - (heredoc_redirect - (heredoc_start) - (pipeline - (command - (command_name - (word)) - (word))) - (simple_heredoc_body) - (heredoc_end)))) - -====================================== -Heredocs with escaped expansions -====================================== - -cat << EOF -DEV_NAME=\$(lsblk) -EOF - ---- - -(program (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end)))) - -====================================== -Quoted Heredocs -====================================== - -cat << 'EOF' -a=$b -EOF - -cat << "EOF" -a=$b -EOF - -cat <<"END OF FILE" -hello, -world -END OF FILE - -cat << \EOF -EOF - ---- - -(program - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end))) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end))) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end))) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end)))) - -========================================== -Heredocs with indented closing delimiters -========================================== - -usage() { - cat <<-EOF - Usage: ${0##*/} FOO BAR - EOF -} - ---- - -(program - (function_definition - (word) - (compound_statement - (redirected_statement - (command (command_name (word))) - (heredoc_redirect (heredoc_start) (heredoc_body (expansion (special_variable_name) (regex))) (heredoc_end)))))) - -========================================== -Heredocs with empty bodies -========================================== - -node <<JS -JS - -node << 'SJ' -SJ - -usage() { - cat <<-EOF - EOF -} - -node << 'EOF' > temp -EOF - ---- - -(program - (redirected_statement - body: (command - name: (command_name - (word))) - redirect: (heredoc_redirect - (heredoc_start) - (simple_heredoc_body) - (heredoc_end))) - (redirected_statement - body: (command - name: (command_name - (word))) - redirect: (heredoc_redirect - (heredoc_start) - (simple_heredoc_body) - (heredoc_end))) - (function_definition - name: (word) - body: (compound_statement - (redirected_statement - body: (command - name: (command_name - (word))) - redirect: (heredoc_redirect - (heredoc_start) - (simple_heredoc_body) - (heredoc_end))))) - (redirected_statement - body: (command - name: (command_name - (word))) - redirect: (heredoc_redirect - (heredoc_start) - (file_redirect - destination: (word)) - (simple_heredoc_body) - (heredoc_end)))) - -========================================== -Heredocs with weird characters -========================================== - -node <<_DELIMITER_WITH_UNDERSCORES_ -Hello. -_DELIMITER_WITH_UNDERSCORES_ - -node <<'```' -Hello. -``` - -node <<!HEREDOC! -Hello. -!HEREDOC! - -node <<\' -Hello. -' - -node <<\\ -Hello. -\ - ---- - -(program - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end))) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end))) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end))) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end))) - (redirected_statement (command (command_name (word))) (heredoc_redirect (heredoc_start) (simple_heredoc_body) (heredoc_end)))) - -========================================== -Herestrings -========================================== - -node <<< foo - -while read -u 3 entry; do - echo $entry -done 3<<<"$ENTRIES" - ---- - -(program - (redirected_statement (command (command_name (word))) (herestring_redirect (word))) - (redirected_statement - (while_statement - (command (command_name (word)) (word) (number) (word)) - (do_group (command (command_name (word)) (simple_expansion (variable_name))))) - (herestring_redirect (file_descriptor) (string (simple_expansion (variable_name)))))) - -========================================== -Subscripts -========================================== - -echo ${a[1 + 2]} - -echo ${b[1234 % 2]} - -${words[++counter]} - -${array[(($number+1))]} - -${array[((number+1))]} - ---- - -(program - (command - (command_name (word)) - (expansion - (subscript (variable_name) (binary_expression (number) (number))))) - (command - (command_name (word)) - (expansion - (subscript (variable_name) (binary_expression (number) (number))))) - (command - (command_name - (expansion - (subscript (variable_name) (unary_expression (word)))))) - (command - (command_name - (expansion - (subscript - (variable_name) - (arithmetic_expansion (binary_expression (simple_expansion (variable_name)) (number))))))) - (command - (command_name - (expansion - (subscript - (variable_name) - (arithmetic_expansion (binary_expression (variable_name) (number)))))))) - -========================================== -Bare $ -========================================== - -echo $ - ---- - -(program - (command - (command_name - (word)))) diff --git a/vendored_parsers/tree-sitter-bash/test/corpus/crlf.txt b/vendored_parsers/tree-sitter-bash/test/corpus/crlf.txt deleted file mode 100644 index b3d6cded8..000000000 --- a/vendored_parsers/tree-sitter-bash/test/corpus/crlf.txt +++ /dev/null @@ -1,13 +0,0 @@ -================================ -Variables with CRLF line endings -================================ - -A=one - -B=two - ---- - -(program - (variable_assignment (variable_name) (word)) - (variable_assignment (variable_name) (word))) diff --git a/vendored_parsers/tree-sitter-bash/test/corpus/literals.txt b/vendored_parsers/tree-sitter-bash/test/corpus/literals.txt deleted file mode 100644 index f24ff1b4c..000000000 --- a/vendored_parsers/tree-sitter-bash/test/corpus/literals.txt +++ /dev/null @@ -1,1098 +0,0 @@ -================================================================================ -Literal words -================================================================================ - -echo a -echo a b - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (word)) - (command - (command_name - (word)) - (word) - (word))) - -================================================================================ -Words with special characters -================================================================================ - -echo {o[k]} -echo }}} -echo ]]] === - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (concatenation - (word) - (word) - (word) - (word) - (word) - (word))) - (command - (command_name - (word)) - (concatenation - (word) - (word) - (word))) - (command - (command_name - (word)) - (concatenation - (word) - (word) - (word)) - (word))) - -================================================================================ -Simple variable expansions -================================================================================ - -echo $abc - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (simple_expansion - (variable_name)))) - -================================================================================ -Special variable expansions -================================================================================ - -echo $# $* $@ $! - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (simple_expansion - (special_variable_name)) - (simple_expansion - (special_variable_name)) - (simple_expansion - (special_variable_name)) - (simple_expansion - (special_variable_name)))) - -================================================================================ -Variable expansions -================================================================================ - -echo ${} -echo ${#} -echo ${var1#*#} -echo ${!abc} -echo ${abc} -echo ${abc:-def} -echo ${abc:- } -echo ${abc: -} - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (expansion)) - (command - (command_name - (word)) - (expansion)) - (command - (command_name - (word)) - (expansion - (variable_name) - (regex))) - (command - (command_name - (word)) - (expansion - (variable_name))) - (command - (command_name - (word)) - (expansion - (variable_name))) - (command - (command_name - (word)) - (expansion - (variable_name) - (word))) - (command - (command_name - (word)) - (expansion - (variable_name))) - (command - (command_name - (word)) - (expansion - (variable_name)))) - -================================================================================ -Variable expansions with operators -================================================================================ - -A="${B[0]# }" -C="${D/#* -E /}" -F="${G%% *}" -H="${I#*;}" -J="${K##*;}" -L="${M%;*}" -N="${O%%;*}" -P="${Q%|*}" -R="${S%()}" -T="${U%(}" -V="${W%)}" -X="${Y%<}" -Z="${A#*<B>}" -C="${D%</E>*}" -F="${#!}" -G=${H,,[I]} -J=${K^^[L]} - --------------------------------------------------------------------------------- - -(program - (variable_assignment - (variable_name) - (string - (expansion - (subscript - (variable_name) - (number))))) - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (regex)))) - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (regex)))) - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (regex)))) - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (regex)))) - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (regex)))) - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (regex)))) - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (regex)))) - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (regex)))) - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (regex)))) - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (regex)))) - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (regex)))) - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (regex)))) - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (regex)))) - (variable_assignment - (variable_name) - (string - (expansion))) - (variable_assignment - (variable_name) - (expansion - (variable_name) - (regex))) - (variable_assignment - (variable_name) - (expansion - (variable_name) - (regex)))) - -================================================================================ -More Variable expansions with operators -================================================================================ - -${parameter-default} -${parameter:-default} -${parameter=default} -${parameter:=default} -${parameter+alt_value} -${parameter:+alt_value} -${parameter?err_msg} -${parameter:?err_msg} -${var%Pattern} -${var%%Pattern} -${var:pos} -${var:pos:len} -${MATRIX:$(($RANDOM%${#MATRIX})):1} - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (expansion - (variable_name) - (word)))) - (command - (command_name - (expansion - (variable_name) - (word)))) - (command - (command_name - (expansion - (variable_name) - (word)))) - (command - (command_name - (expansion - (variable_name) - (word)))) - (command - (command_name - (expansion - (variable_name) - (word)))) - (command - (command_name - (expansion - (variable_name) - (word)))) - (command - (command_name - (expansion - (variable_name) - (word)))) - (command - (command_name - (expansion - (variable_name) - (word)))) - (command - (command_name - (expansion - (variable_name) - (regex)))) - (command - (command_name - (expansion - (variable_name) - (regex)))) - (command - (command_name - (expansion - (variable_name) - (variable_name)))) - (command - (command_name - (expansion - (variable_name) - (variable_name) - (variable_name)))) - (command - (command_name - (expansion - (variable_name) - (arithmetic_expansion - (binary_expression - (variable_name) - (expansion - (variable_name)))) - (number))))) - -================================================================================ -Variable expansions in strings -================================================================================ - -A="${A:-$B/c}" -A="${b=$c/$d}" - --------------------------------------------------------------------------------- - -(program - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (concatenation - (simple_expansion - (variable_name)) - (word))))) - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (concatenation - (simple_expansion - (variable_name)) - (word) - (simple_expansion - (variable_name))))))) - -================================================================================ -Variable expansions with regexes -================================================================================ - -A=${B//:;;/$'\n'} - -# escaped space -C=${D/;\ *;|} - --------------------------------------------------------------------------------- - -(program - (variable_assignment - (variable_name) - (expansion - (variable_name) - (regex) - (ansi_c_string))) - (comment) - (variable_assignment - (variable_name) - (expansion - (variable_name) - (regex)))) - -================================================================================ -Other variable expansion operators -================================================================================ - -cat ${BAR} ${ABC=def} ${GHI:?jkl} -[ "$a" != "${a#[Bc]}" ] - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (expansion - (variable_name)) - (expansion - (variable_name) - (word)) - (expansion - (variable_name) - (word))) - (test_command - (binary_expression - (string - (simple_expansion - (variable_name))) - (string - (expansion - (variable_name) - (regex)))))) - -================================================================================ -Words ending with '$' -================================================================================ - -grep ^${var}$ - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (concatenation - (word) - (expansion - (variable_name))))) - -================================================================================ -Command substitutions -================================================================================ - -echo `echo hi` -echo `echo hi; echo there` -echo $(echo $(echo hi)) -echo $(< some-file) - -# both of these are concatenations! -echo `echo otherword`word -echo word`echo otherword` - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (command_substitution - (command - (command_name - (word)) - (word)))) - (command - (command_name - (word)) - (command_substitution - (command - (command_name - (word)) - (word)) - (command - (command_name - (word)) - (word)))) - (command - (command_name - (word)) - (command_substitution - (command - (command_name - (word)) - (command_substitution - (command - (command_name - (word)) - (word)))))) - (command - (command_name - (word)) - (command_substitution - (file_redirect - (word)))) - (comment) - (command - (command_name - (word)) - (concatenation - (command_substitution - (command - (command_name - (word)) - (word))) - (word))) - (command - (command_name - (word)) - (concatenation - (word) - (command_substitution - (command - (command_name - (word)) - (word)))))) - -================================================================================ -Process substitutions -================================================================================ - -wc -c <(echo abc && echo def) -wc -c <(echo abc; echo def) -echo abc > >(wc -c) - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (word) - (process_substitution - (list - (command - (command_name - (word)) - (word)) - (command - (command_name - (word)) - (word))))) - (command - (command_name - (word)) - (word) - (process_substitution - (command - (command_name - (word)) - (word)) - (command - (command_name - (word)) - (word)))) - (redirected_statement - (command - (command_name - (word)) - (word)) - (file_redirect - (process_substitution - (command - (command_name - (word)) - (word)))))) - -================================================================================ -Single quoted strings -================================================================================ - -echo 'a b' 'c d' - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (raw_string) - (raw_string))) - -================================================================================ -Double quoted strings -================================================================================ - -echo "a" "b" -echo "a ${b} c" "d $e" - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (string) - (string)) - (command - (command_name - (word)) - (string - (expansion - (variable_name))) - (string - (simple_expansion - (variable_name))))) - -================================================================================ -Strings containing command substitutions -================================================================================ - -find "`dirname $file`" -name "$base"'*' - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (string - (command_substitution - (command - (command_name - (word)) - (simple_expansion - (variable_name))))) - (word) - (concatenation - (string - (simple_expansion - (variable_name))) - (raw_string)))) - -================================================================================ -Strings containing escape sequence -================================================================================ - -echo "\"The great escape\`\${var}" - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (string))) - -================================================================================ -Strings containing special characters -================================================================================ - -echo "s/$/'/" -echo "#" -echo "s$" - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (string)) - (command - (command_name - (word)) - (string)) - (command - (command_name - (word)) - (string))) - -================================================================================ -Strings with ANSI-C quoting -================================================================================ - -echo $'Here\'s Johnny!\r\n' - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (ansi_c_string))) - -================================================================================ -Arrays and array expansions -================================================================================ - -a=() -b=(1 2 3) - -echo ${a[@]} -echo ${#b[@]} - -a[$i]=50 -a+=(foo "bar" $(baz)) - -printf " %-9s" "${seq0:-(default)}" - --------------------------------------------------------------------------------- - -(program - (variable_assignment - (variable_name) - (array)) - (variable_assignment - (variable_name) - (array - (number) - (number) - (number))) - (command - (command_name - (word)) - (expansion - (subscript - (variable_name) - (word)))) - (command - (command_name - (word)) - (expansion - (subscript - (variable_name) - (word)))) - (variable_assignment - (subscript - (variable_name) - (simple_expansion - (variable_name))) - (number)) - (variable_assignment - (variable_name) - (array - (word) - (string) - (command_substitution - (command - (command_name - (word)))))) - (command - (command_name - (word)) - (string) - (string - (expansion - (variable_name) - (array - (word)))))) - -================================================================================ -Escaped characters in strings -================================================================================ - -echo -ne "\033k$1\033\\" > /dev/stderr - --------------------------------------------------------------------------------- - -(program - (redirected_statement - (command - (command_name - (word)) - (word) - (string - (simple_expansion - (variable_name)))) - (file_redirect - (word)))) - -================================================================================ -Words containing bare '#' -================================================================================ - -curl -# localhost #comment without space -nix build nixpkgs#hello -v # comment with space - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (word) - (word)) - (comment) - (command - (command_name - (word)) - (word) - (word) - (word)) - (comment)) - -================================================================================ -Words containing # that are not comments -================================================================================ - -echo 'word'#not-comment # a legit comment -echo $(uname -a)#not-comment # a legit comment -echo `uname -a`#not-comment # a legit comment -echo $hey#not-comment # a legit comment -var=#not-comment # a legit comment -echo "'$var'" # -> '#not-comment' - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (concatenation - (raw_string) - (word))) - (comment) - (command - (command_name - (word)) - (concatenation - (command_substitution - (command - (command_name - (word)) - (word))) - (word))) - (comment) - (command - (command_name - (word)) - (concatenation - (command_substitution - (command - (command_name - (word)) - (word))) - (word))) - (comment) - (command - (command_name - (word)) - (concatenation - (simple_expansion - (variable_name)) - (word))) - (comment) - (variable_assignment - (variable_name) - (word)) - (comment) - (command - (command_name - (word)) - (string - (simple_expansion - (variable_name)))) - (comment)) - -================================================================================ -Variable assignments immediately followed by a terminator -================================================================================ - -loop=; variables=& here=;; - --------------------------------------------------------------------------------- - -(program - (variable_assignment - (variable_name)) - (variable_assignment - (variable_name)) - (variable_assignment - (variable_name))) - -================================================================================ -Multiple variable assignments -================================================================================ - -component_type="${1}" item_name="${2?}" - --------------------------------------------------------------------------------- - -(program - (variable_assignments - (variable_assignment - (variable_name) - (string - (expansion - (variable_name)))) - (variable_assignment - (variable_name) - (string - (expansion - (variable_name) - (word)))))) - -================================================================================ -Arithmetic expansions -================================================================================ - -echo $((1 + 2 - 3 * 4 / 5)) -a=$((6 % 7 ** 8 << 9 >> 10 & 11 | 12 ^ 13)) -$(((${1:-${SECONDS}} % 12) + 144)) -((foo=0)) -echo $((bar=1)) -echo $((-1, 1)) -echo $((! -a || ~ +b || ++c || --d)) -echo $((foo-- || bar++)) - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (word)) - (arithmetic_expansion - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (number) - (number)) - (number)) - (number)) - (number)))) - (variable_assignment - (variable_name) - (arithmetic_expansion - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (binary_expression - (number) - (number)) - (number)) - (number)) - (number)) - (number)) - (number)) - (number)))) - (command - (command_name - (arithmetic_expansion - (binary_expression - (parenthesized_expression - (binary_expression - (expansion - (variable_name) - (expansion - (variable_name))) - (number))) - (number))))) - (command - (command_name - (arithmetic_expansion - (binary_expression - (variable_name) - (number))))) - (command - (command_name - (word)) - (arithmetic_expansion - (binary_expression - (variable_name) - (number)))) - (command - (command_name - (word)) - (arithmetic_expansion - (unary_expression - (number)) - (number))) - (command - (command_name - (word)) - (arithmetic_expansion - (binary_expression - (binary_expression - (binary_expression - (unary_expression - (test_operator)) - (unary_expression - (unary_expression - (variable_name)))) - (unary_expression - (variable_name))) - (unary_expression - (variable_name))))) - (command - (command_name - (word)) - (arithmetic_expansion - (postfix_expression - (binary_expression - (postfix_expression - (variable_name)) - (variable_name)))))) - -================================================================================ -Concatenation with double backticks -================================================================================ - -main() { - local foo="asd"` - `"fgh" -} - ---- - -(program - (function_definition - (word) - (compound_statement - (declaration_command - (variable_assignment - (variable_name) - (concatenation - (string) - (string))))))) - -================================================================================ -Brace expressions and lookalikes -================================================================================ - -echo {1..2} -echo {0..5} -echo {0..2 # not a brace expression -echo }{0..2} -echo {0..n} # not a brace expression -echo {0..n..2} # not a brace expression -echo {0..2}{1..2} - ---- - -(program - (command - (command_name (word)) - (brace_expression (number) (number))) - (command - (command_name (word)) - (brace_expression (number) (number))) - (command - (command_name (word)) - (concatenation (word) (word))) - (comment) - (command - (command_name (word)) - (concatenation - (word) - (brace_expression (number) (number)))) - (command - (command_name (word)) - (concatenation (word) (word) (word))) - (comment) - (command - (command_name (word)) - (concatenation (word) (word) (word))) - (comment) - (command - (command_name (word)) - (concatenation - (brace_expression (number) (number)) - (brace_expression (number) (number))))) diff --git a/vendored_parsers/tree-sitter-bash/test/corpus/programs.txt b/vendored_parsers/tree-sitter-bash/test/corpus/programs.txt deleted file mode 100644 index cae772ea9..000000000 --- a/vendored_parsers/tree-sitter-bash/test/corpus/programs.txt +++ /dev/null @@ -1,108 +0,0 @@ -=============================== -Comments -=============================== - -#!/bin/bash -# hi - ---- - -(program - (comment) - (comment)) - -=============================== -Escaped newlines -=============================== - -abc \ - d \ - e - -f=g \ - h=i \ - j \ - --k - ---- - -(program - (command - (command_name - (word)) - (word) - (word)) - (command - (variable_assignment - (variable_name) - (word)) - (variable_assignment - (variable_name) - (word)) - (command_name - (word)) - (word))) - -============================= -escaped newline immediately after a char -============================= - -echo a \ - b - -echo a\ - b - -echo a\ - b\ - c - - ------------------------------ - -(program - (command - (command_name - (word)) - (word) - (word)) - (command - (command_name - (word)) - (word) - (word)) - (command - (command_name - (word)) - (word) - (word) - (word))) - -============================= -Escaped whitespace -============================= - -echo 1 \ 2 \ 3 - ---- - -(program - (command - (command_name - (word)) - (number) - (number) - (number))) - -==================================== -Files without trailing terminators -==================================== - -echo hi ---- - -(program - (command - (command_name - (word)) - (word))) diff --git a/vendored_parsers/tree-sitter-bash/test/corpus/statements.txt b/vendored_parsers/tree-sitter-bash/test/corpus/statements.txt deleted file mode 100644 index 906aad4cd..000000000 --- a/vendored_parsers/tree-sitter-bash/test/corpus/statements.txt +++ /dev/null @@ -1,1421 +0,0 @@ -================================================================================ -Pipelines -================================================================================ - -whoami | cat -cat foo | grep -v bar - --------------------------------------------------------------------------------- - -(program - (pipeline - (command - name: (command_name - (word))) - (command - name: (command_name - (word)))) - (pipeline - (command - name: (command_name - (word)) - argument: (word)) - (command - name: (command_name - (word)) - argument: (word) - argument: (word)))) - -================================================================================ -Lists -================================================================================ - -a | b && c && d; d e f || e g - --------------------------------------------------------------------------------- - -(program - (list - (list - (pipeline - (command - (command_name - (word))) - (command - (command_name - (word)))) - (command - (command_name - (word)))) - (command - (command_name - (word)))) - (list - (command - (command_name - (word)) - (word) - (word)) - (command - (command_name - (word)) - (word)))) - -================================================================================ -While statements -================================================================================ - -while something happens; do - echo a - echo b -done - -while local name="$1" val="$2"; shift 2; do - printf "%s (%s)\n" "$val" "$name" -done - --------------------------------------------------------------------------------- - -(program - (while_statement - condition: (command - name: (command_name - (word)) - argument: (word)) - body: (do_group - (command - name: (command_name - (word)) - argument: (word)) - (command - name: (command_name - (word)) - argument: (word)))) - (while_statement - condition: (declaration_command - (variable_assignment - name: (variable_name) - value: (string - (simple_expansion - (variable_name)))) - (variable_assignment - name: (variable_name) - value: (string - (simple_expansion - (variable_name))))) - condition: (command - name: (command_name - (word)) - argument: (number)) - body: (do_group - (command - name: (command_name - (word)) - argument: (string) - argument: (string - (simple_expansion - (variable_name))) - argument: (string - (simple_expansion - (variable_name))))))) - -================================================================================ -Until statements -================================================================================ - -until something happens; do - echo a - echo b -done - --------------------------------------------------------------------------------- - -(program - (while_statement - condition: (command - name: (command_name - (word)) - argument: (word)) - body: (do_group - (command - name: (command_name - (word)) - argument: (word)) - (command - name: (command_name - (word)) - argument: (word))))) - -================================================================================ -While statements with IO redirects -================================================================================ - -while read line; do - echo $line -done < <(cat file) - --------------------------------------------------------------------------------- - -(program - (redirected_statement - body: (while_statement - condition: (command - name: (command_name - (word)) - argument: (word)) - body: (do_group - (command - name: (command_name - (word)) - argument: (simple_expansion - (variable_name))))) - redirect: (file_redirect - destination: (process_substitution - (command - name: (command_name - (word)) - argument: (word)))))) - -================================================================================ -For statements -================================================================================ - -for a in 1 2 $(seq 5 10); do - echo $a -done - -for ARG; do - echo $ARG - ARG='' -done - -for c in ${=1}; do - echo c -done - --------------------------------------------------------------------------------- - -(program - (for_statement - variable: (variable_name) - value: (number) - value: (number) - value: (command_substitution - (command - name: (command_name - (word)) - argument: (number) - argument: (number))) - body: (do_group - (command - name: (command_name - (word)) - argument: (simple_expansion - (variable_name))))) - (for_statement - variable: (variable_name) - body: (do_group - (command - name: (command_name - (word)) - argument: (simple_expansion - (variable_name))) - (variable_assignment - name: (variable_name) - value: (raw_string)))) - (for_statement - variable: (variable_name) - value: (expansion - (variable_name)) - body: (do_group - (command - name: (command_name - (word)) - argument: (word))))) - -================================================================================ -Select statements -================================================================================ - -select choice in X Y $(ls); do - echo $choice - break -done - -select ARG; do - echo $ARG - ARG='' -done - --------------------------------------------------------------------------------- - -(program - (for_statement - (variable_name) - (word) - (word) - (command_substitution - (command - (command_name - (word)))) - (do_group - (command - (command_name - (word)) - (simple_expansion - (variable_name))) - (command - (command_name - (word))))) - (for_statement - (variable_name) - (do_group - (command - (command_name - (word)) - (simple_expansion - (variable_name))) - (variable_assignment - (variable_name) - (raw_string))))) - -================================================================================ -C-style for statements -================================================================================ - -for (( c=1; c<=5; c++ )) -do - echo $c -done - -for (( c=1; c<=5; c++ )) { - echo $c -} - -for (( ; ; )) -do - echo 'forever' -done - -for ((cx = 0; c = $cx / $pf, c < $wc - $k; )); do - echo "$cx" -done - -for (( i = 4;;i--)) ; do echo $i; if (( $i == 0 )); then break; fi; done - -# added post-bash-4.2 -for (( i = j = k = 1; i % 9 || (j *= -1, $( ((i%9)) || printf " " >&2; echo 0), k++ <= 10); i += j )) -do -printf "$i" -done - -echo - -( for (( i = j = k = 1; i % 9 || (j *= -1, $( ((i%9)) || printf " " >&2; echo 0), k++ <= 10); i += j )) -do -printf "$i" -done ) - --------------------------------------------------------------------------------- - -(program - (c_style_for_statement - (variable_assignment - (variable_name) - (number)) - (binary_expression - (word) - (number)) - (postfix_expression - (word)) - (do_group - (command - (command_name - (word)) - (simple_expansion - (variable_name))))) - (c_style_for_statement - (variable_assignment - (variable_name) - (number)) - (binary_expression - (word) - (number)) - (postfix_expression - (word)) - (compound_statement - (command - (command_name - (word)) - (simple_expansion - (variable_name))))) - (c_style_for_statement - (do_group - (command - (command_name - (word)) - (raw_string)))) - (c_style_for_statement - (variable_assignment - (variable_name) - (number)) - (variable_assignment - (variable_name) - (binary_expression - (simple_expansion - (variable_name)) - (simple_expansion - (variable_name)))) - (binary_expression - (word) - (binary_expression - (simple_expansion - (variable_name)) - (simple_expansion - (variable_name)))) - (do_group - (command - (command_name - (word)) - (string - (simple_expansion - (variable_name)))))) - (c_style_for_statement - (variable_assignment - (variable_name) - (number)) - (postfix_expression - (word)) - (do_group - (command - (command_name - (word)) - (simple_expansion - (variable_name))) - (if_statement - (command - (command_name - (arithmetic_expansion - (binary_expression - (simple_expansion - (variable_name)) - (number))))) - (command - (command_name - (word)))))) - (comment) - (c_style_for_statement - (variable_assignment - (variable_name) - (variable_assignment - (variable_name) - (variable_assignment - (variable_name) - (number)))) - (binary_expression - (word) - (binary_expression - (number) - (parenthesized_expression - (binary_expression - (word) - (number)) - (command_substitution - (redirected_statement - (list - (command - (command_name - (arithmetic_expansion - (binary_expression - (variable_name) - (number))))) - (command - (command_name - (word)) - (string))) - (file_redirect - (number))) - (command - (command_name - (word)) - (number))) - (binary_expression - (postfix_expression - (word)) - (number))))) - (binary_expression - (word) - (word)) - (do_group - (command - (command_name - (word)) - (string - (simple_expansion - (variable_name)))))) - (command - (command_name - (word))) - (subshell - (c_style_for_statement - (variable_assignment - (variable_name) - (variable_assignment - (variable_name) - (variable_assignment - (variable_name) - (number)))) - (binary_expression - (word) - (binary_expression - (number) - (parenthesized_expression - (binary_expression - (word) - (number)) - (command_substitution - (redirected_statement - (list - (command - (command_name - (arithmetic_expansion - (binary_expression - (variable_name) - (number))))) - (command - (command_name - (word)) - (string))) - (file_redirect - (number))) - (command - (command_name - (word)) - (number))) - (binary_expression - (postfix_expression - (word)) - (number))))) - (binary_expression - (word) - (word)) - (do_group - (command - (command_name - (word)) - (string - (simple_expansion - (variable_name)))))))) - -================================================================================ -If statements -================================================================================ - -if cat some_file | grep -v ok; then - echo one -elif cat other_file | grep -v ok; then - echo two -else - exit -fi - --------------------------------------------------------------------------------- - -(program - (if_statement - (pipeline - (command - (command_name - (word)) - (word)) - (command - (command_name - (word)) - (word) - (word))) - (command - (command_name - (word)) - (word)) - (elif_clause - (pipeline - (command - (command_name - (word)) - (word)) - (command - (command_name - (word)) - (word) - (word))) - (command - (command_name - (word)) - (word))) - (else_clause - (command - (command_name - (word)))))) - -================================================================================ -If statements with conditional expressions -================================================================================ - -if [ "$(uname)" == 'Darwin' ]; then - echo one -fi - -if [ a = -d ]; then - echo two -fi - -[[ abc == +(a|b|c) ]] && echo 1 -[[ abc != +(a|b|c) ]] && echo 2 - --------------------------------------------------------------------------------- - -(program - (if_statement - (test_command - (binary_expression - (string - (command_substitution - (command - (command_name - (word))))) - (raw_string))) - (command - (command_name - (word)) - (word))) - (if_statement - (test_command - (binary_expression - (word) - (word))) - (command - (command_name - (word)) - (word))) - (list - (test_command - (binary_expression - (word) - (regex))) - (command - (command_name - (word)) - (number))) - (list - (test_command - (binary_expression - (word) - (regex))) - (command - (command_name - (word)) - (number)))) - -================================================================================ -If statements with negated command -================================================================================ - -if ! command -v echo; then - echo 'hello' -fi - --------------------------------------------------------------------------------- - -(program - (if_statement - condition: (negated_command - (command - name: (command_name - (word)) - argument: (word) - argument: (word))) - (command - name: (command_name - (word)) - argument: (raw_string)))) - -================================================================================ -If statements with command -================================================================================ - -if command -v echo; then - echo 'hello' -fi - --------------------------------------------------------------------------------- - -(program - (if_statement - condition: (command - name: (command_name - (word)) - argument: (word) - argument: (word)) - (command - name: (command_name - (word)) - argument: (raw_string)))) - -================================================================================ -If statements with variable assignment by command substitution -================================================================================ - -if result=$(echo 'hello'); then - echo 'hello' -fi - --------------------------------------------------------------------------------- - -(program - (if_statement - condition: (variable_assignment - name: (variable_name) - value: (command_substitution - (command - name: (command_name - (word)) - argument: (raw_string)))) - (command - name: (command_name - (word)) - argument: (raw_string)))) - -================================================================================ -If statements with negated variable assignment by command substitution -================================================================================ - -if ! result=$(echo 'hello'); then - echo 'hello' -fi - --------------------------------------------------------------------------------- - -(program - (if_statement - condition: (negated_command - (variable_assignment - name: (variable_name) - value: (command_substitution - (command - name: (command_name - (word)) - argument: (raw_string))))) - (command - name: (command_name - (word)) - argument: (raw_string)))) - -================================================================================ -If statements with variable assignment -================================================================================ - -if foo=1; then - echo 'hello' -fi - --------------------------------------------------------------------------------- - -(program - (if_statement - condition: (variable_assignment - name: (variable_name) - value: (number)) - (command - name: (command_name - (word)) - argument: (raw_string)))) - -================================================================================ -If statements with negated variable assignment -================================================================================ - -if ! foo=1; then - echo 'hello' -fi - --------------------------------------------------------------------------------- - -(program - (if_statement - condition: (negated_command - (variable_assignment - name: (variable_name) - value: (number))) - (command - name: (command_name - (word)) - argument: (raw_string)))) - -================================================================================ -Case statements -================================================================================ - -case "opt" in - a) - echo a - ;; - - b) - echo b - ;& - - c) - echo c;; -esac - -case "opt" in - (a) - echo a - ;; - - (b) - echo b - ;& - - (c) - echo c;; -esac - -case "$Z" in - ab*|cd*) ef -esac - -case $dest in - *.[1357]) - exit $? - ;; -esac - -case x in x) echo meow ;; esac - -case foo in - bar\ baz) : ;; -esac - -case "$arg" in - *([0-9])([0-9])) echo "$arg" -esac - --------------------------------------------------------------------------------- - -(program - (case_statement - (string) - (case_item - (word) - (command - (command_name - (word)) - (word))) - (case_item - (word) - (command - (command_name - (word)) - (word))) - (case_item - (word) - (command - (command_name - (word)) - (word)))) - (case_statement - (string) - (case_item - (word) - (command - (command_name - (word)) - (word))) - (case_item - (word) - (command - (command_name - (word)) - (word))) - (case_item - (word) - (command - (command_name - (word)) - (word)))) - (case_statement - (string - (simple_expansion - (variable_name))) - (case_item - (word) - (word) - (command - (command_name - (word))))) - (case_statement - (simple_expansion - (variable_name)) - (case_item - (concatenation - (word) - (word) - (number) - (word)) - (command - (command_name - (word)) - (simple_expansion - (special_variable_name))))) - (case_statement - (word) - (case_item - (word) - (command - (command_name - (word)) - (word)))) - (case_statement - (word) - (case_item - (word) - (command - (command_name - (word))))) - (case_statement - (string - (simple_expansion - (variable_name))) - (case_item - (extglob_pattern) - (command - (command_name - (word)) - (string - (simple_expansion - (variable_name))))))) - -================================================================================ -Test commands -================================================================================ - -if [[ "$lsb_dist" != 'Ubuntu' || $(ver_to_int "$lsb_release") < $(ver_to_int '14.04') ]]; then - return 1 -fi - --------------------------------------------------------------------------------- - -(program - (if_statement - (test_command - (binary_expression - (binary_expression - (binary_expression - (string - (simple_expansion - (variable_name))) - (raw_string)) - (command_substitution - (command - (command_name - (word)) - (string - (simple_expansion - (variable_name)))))) - (command_substitution - (command - (command_name - (word)) - (raw_string))))) - (command - (command_name - (word)) - (number)))) - -================================================================================ -Test commands with ternary -================================================================================ - -if (( 1 < 2 ? 1 : 2 )); then - return 1 -fi - --------------------------------------------------------------------------------- - -(program - (if_statement - (command - (command_name - (arithmetic_expansion - (ternary_expression - (binary_expression - (number) - (number)) - (number) - (number))))) - (command - (command_name - (word)) - (number)))) - -================================================================================ -Ternary expressions -================================================================================ - -$((n < 10 ? n : 10)) -$(($n < 10 ? $n : 10)) -$((${n} < 10 ? ${n} : 10)) - --------------------------------------------------------------------------------- - -(program - (command - (command_name - (arithmetic_expansion - (ternary_expression - (binary_expression - (variable_name) - (number)) - (variable_name) - (number))))) - (command - (command_name - (arithmetic_expansion - (ternary_expression - (binary_expression - (simple_expansion - (variable_name)) - (number)) - (simple_expansion - (variable_name)) - (number))))) - (command - (command_name - (arithmetic_expansion - (ternary_expression - (binary_expression - (expansion - (variable_name)) - (number)) - (expansion - (variable_name)) - (number)))))) - -================================================================================ -Test commands with regexes -================================================================================ - -[[ "35d8b" =~ ^[0-9a-fA-F] ]] -[[ $CMD =~ (^|;)update_terminal_cwd($|;) ]] -[[ ! " ${completions[*]} " =~ " $alias_cmd " ]] -! [[ "$a" =~ ^a|b\ *c|d$ ]] -[[ "$1" =~ ^${var}${var}*=..* ]] -[[ "$1" =~ ^\-${var}+ ]] -[[ ${var1} == *${var2}* ]] -[[ "$server" =~ [0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3} ]] -[[ "$primary_wins" =~ ([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}) ]] - --------------------------------------------------------------------------------- - -(program - (test_command - (binary_expression - (string) - (regex))) - (test_command - (binary_expression - (simple_expansion - (variable_name)) - (regex))) - (test_command - (unary_expression - (binary_expression - (string - (expansion - (subscript - (variable_name) - (word)))) - (string - (simple_expansion - (variable_name)))))) - (negated_command - (test_command - (binary_expression - (string - (simple_expansion - (variable_name))) - (regex)))) - (test_command - (binary_expression - (string - (simple_expansion - (variable_name))) - (regex))) - (test_command - (binary_expression - (string - (simple_expansion - (variable_name))) - (regex))) - (test_command - (binary_expression - (expansion - (variable_name)) - (regex))) - (test_command - (binary_expression - (string - (simple_expansion - (variable_name))) - (regex))) - (test_command - (binary_expression - (string - (simple_expansion - (variable_name))) - (regex)))) - -================================================================================ -Subshells -================================================================================ - -( - ./start-server --port=80 -) & - --------------------------------------------------------------------------------- - -(program - (subshell - (command - (command_name - (word)) - (word)))) - -================================================================================ -Function definitions -================================================================================ - -do_something() { - echo ok -} - -run_subshell_command() ( - true -) - -run_test_command() [[ -e foo ]] - -function do_something_else() { - a | xargs -I{} find xml/{} -type f -} - -function do_yet_another_thing { - echo ok -} 2>&1 - -do_nothing() { return 0; } - --------------------------------------------------------------------------------- - -(program - (function_definition - (word) - (compound_statement - (command - (command_name - (word)) - (word)))) - (function_definition - (word) - (subshell - (command - (command_name - (word))))) - (function_definition - (word) - (test_command - (unary_expression - (test_operator) - (word)))) - (function_definition - (word) - (compound_statement - (pipeline - (command - (command_name - (word))) - (command - (command_name - (word)) - (concatenation - (word) - (word) - (word)) - (word) - (concatenation - (word) - (word) - (word)) - (word) - (word))))) - (function_definition - (word) - (compound_statement - (command - (command_name - (word)) - (word))) - (file_redirect - (file_descriptor) - (number))) - (function_definition - (word) - (compound_statement - (command - (command_name - (word)) - (number))))) - -================================================================================ -Variable declaration: declare & typeset -================================================================================ - -declare var1 -typeset -i -r var2=42 var3=10 - --------------------------------------------------------------------------------- - -(program - (declaration_command - (variable_name)) - (declaration_command - (word) - (word) - (variable_assignment - (variable_name) - (number)) - (variable_assignment - (variable_name) - (number)))) - -================================================================================ -Variable declaration: readonly -================================================================================ - -readonly var1 -readonly var2=42 - --------------------------------------------------------------------------------- - -(program - (declaration_command - (variable_name)) - (declaration_command - (variable_assignment - (variable_name) - (number)))) - -================================================================================ -Variable declaration: local -================================================================================ - -local a=42 b -local -r c -local var=word1\ word2 - --------------------------------------------------------------------------------- - -(program - (declaration_command - (variable_assignment - (variable_name) - (number)) - (variable_name)) - (declaration_command - (word) - (variable_name)) - (declaration_command - (variable_assignment - (variable_name) - (word)))) - -================================================================================ -Variable declaration: export -================================================================================ - -export PATH -export FOOBAR PATH="$PATH:/usr/foobar/bin" - --------------------------------------------------------------------------------- - -(program - (declaration_command - (variable_name)) - (declaration_command - (variable_name) - (variable_assignment - (variable_name) - (string - (simple_expansion - (variable_name)))))) - -================================================================================ -Variable declaration: command substitution with semi-colon -================================================================================ - -_path=$( - while statement; do - cd ".." - done; - echo $PWD -) - --------------------------------------------------------------------------------- - -(program - (variable_assignment - (variable_name) - (command_substitution - (while_statement - (command - (command_name - (word))) - (do_group - (command - (command_name - (word)) - (string)))) - (command - (command_name - (word)) - (simple_expansion - (variable_name)))))) - -=========================================================== -Command substution with $ and backticks -=========================================================== - -$(eval echo $`echo ${foo}`) - ---- - -(program - (command - (command_name - (command_substitution - (command - (command_name - (word)) - (word) - (command_substitution - (command - (command_name - (word)) - (expansion - (variable_name))))))))) - -================================================================================ -Expressions passed to declaration commands -================================================================================ - -export "$(echo ${key} | tr [:lower:] [:upper:])=${p_key#*=}" - --------------------------------------------------------------------------------- - -(program - (declaration_command - (string - (command_substitution - (pipeline - (command - (command_name - (word)) - (expansion - (variable_name))) - (command - (command_name - (word)) - (concatenation - (word) - (word) - (word)) - (concatenation - (word) - (word) - (word))))) - (expansion - (variable_name) - (regex))))) - -================================================================================ -Unset commands -================================================================================ - -unset A -unset "$variable_name" -unsetenv -f ONE TWO - --------------------------------------------------------------------------------- - -(program - (unset_command - (variable_name)) - (unset_command - (string - (simple_expansion - (variable_name)))) - (unset_command - (word) - (variable_name) - (variable_name))) - -================================================================================ -Compound statements -================================================================================ - -a () { - ls || { echo "b"; return 0; } - echo c -} - -{ echo "a" - echo "b" -} >&2 - --------------------------------------------------------------------------------- - -(program - (function_definition - (word) - (compound_statement - (list - (command - (command_name - (word))) - (compound_statement - (command - (command_name - (word)) - (string)) - (command - (command_name - (word)) - (number)))) - (command - (command_name - (word)) - (word)))) - (redirected_statement - (compound_statement - (command - (command_name - (word)) - (string)) - (command - (command_name - (word)) - (string))) - (file_redirect - (number))))